-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcapmodel_transforms.cpp
81 lines (66 loc) · 2.15 KB
/
capmodel_transforms.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
*
* Copyright (c) 2018 - 2019 Mateusz 'mteg' Golicz
*
* Distributed under Apache License version 2.0
*
*/
#include <cstring>
#include <cmath>
#include <cstdio>
#include "capengine.h"
#include "capdebug.h"
#include "svd.h"
void capModel::findTransformTo(capModel *destModel, bool doCompose) {
std::vector <capGenericPoint> pa, pb;
pa.clear(); pb.clear();
for(auto const & it: this->savedPoints)
{
if(destModel->savedPoints.count(it.first))
{
pa.push_back(it.second);
pb.push_back(destModel->savedPoints[it.first]);
}
}
unsigned long n = pa.size();
if(n < 3) return;
capAffineMatrix *m = capAffineMatrix::findBetween(pa, pb);
if(!m)
return;
if(doCompose)
this->affineMatrix.compose(m);
else
this->affineMatrix.setFrom(m);
delete m;
}
void capModel::scale(float sz)
{
capAffineMatrix stepTransform, destTransform;
destTransform.setUnit();
/* scale x0.5 around (2,4,6) */
stepTransform.setTranslation(-this->renderer->cam.x, -this->renderer->cam.y, -this->renderer->cam.z);
destTransform.compose(&stepTransform);
stepTransform.setScale(sz);
destTransform.compose(&stepTransform);
stepTransform.setTranslation(this->renderer->cam.x, this->renderer->cam.y, this->renderer->cam.z);
destTransform.compose(&stepTransform);
this->affineMatrix.compose(&destTransform);
}
void capModel::rotate(float degAngle, int axis)
{
capAffineMatrix stepTransform, destTransform;
stepTransform.setTranslation(-this->renderer->cam.x, -this->renderer->cam.y, -this->renderer->cam.z);
destTransform.compose(&stepTransform);
stepTransform.setRotation(degAngle, axis);
destTransform.compose(&stepTransform);
stepTransform.setTranslation(this->renderer->cam.x, this->renderer->cam.y, this->renderer->cam.z);
destTransform.compose(&stepTransform);
this->affineMatrix.compose(&destTransform);
}
void capModel::translate(float tx, float ty, float tz)
{
capAffineMatrix destTransform;
destTransform.setUnit();
destTransform.setTranslation(tx, ty, tz);
this->affineMatrix.compose(&destTransform);
}