Tunes
This commit is contained in:
parent
762268387e
commit
e636394952
2 changed files with 3 additions and 3 deletions
|
|
@ -465,7 +465,7 @@ namespace tp {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Matrix Properties
|
// Matrix Properties
|
||||||
MVec transform(const MVec& in) const { return MVec(i.x * in.x + i.y * in.y, j.x * in.y + j.y * in.x); }
|
MVec transform(const MVec& in) const { return MVec(i.x * in.x + i.y * in.y, j.x * in.x + j.y * in.y); }
|
||||||
|
|
||||||
Mat transform(const Mat& in) const {
|
Mat transform(const Mat& in) const {
|
||||||
Mat out;
|
Mat out;
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ public:
|
||||||
Sketch3DApplication() {
|
Sketch3DApplication() {
|
||||||
setRoot(&mGui);
|
setRoot(&mGui);
|
||||||
|
|
||||||
mGui.createRenderWidget(mGraphics->getCanvas(), { 1920, 1080 });
|
mGui.createRenderWidget(mGraphics->getCanvas(), { 2560, 1440 });
|
||||||
mGui.setProject(&mSketch);
|
mGui.setProject(&mSketch);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -25,4 +25,4 @@ void runApp() {
|
||||||
app.run();
|
app.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() { runApp(); }
|
int main() { runApp(); }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue