File tree Expand file tree Collapse file tree 8 files changed +5
-18
lines changed
Expand file tree Collapse file tree 8 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ private:
6767 }
6868
6969 void scanPartsRecurse (Node node) {
70- import std.stdio : writeln;
7170
7271 // Don't need to scan null nodes
7372 if (node is null ) return ;
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ abstract
2727class Deformer : Node , IDeformable {
2828private :
2929 void scanPartsRecurse (Node node) {
30- import std.stdio : writeln;
3130
3231 // Don't need to scan null nodes
3332 if (node is null ) return ;
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import std.exception;
1616import std.algorithm.mutation : copy;
1717import std.math : isNaN;
1818
19- public import inochi2d.core.nodes.common ;
2019public import inochi2d.core.render.state ;
2120public import inochi2d.core.mesh ;
2221
@@ -74,7 +73,6 @@ protected:
7473 super .onDeserialize(object);
7574
7675 if (object.isJsonArray(" textures" )) {
77- import std.stdio : writeln;
7876 foreach (i, ref JSONValue element; object[" textures" ].array) {
7977
8078 uint textureId = element.tryGet! uint (NO_TEXTURE );
Original file line number Diff line number Diff line change 77 Authors: Asahi Lina
88*/
99module inochi2d.core.nodes.drivers ;
10- import inochi2d.core.nodes.common ;
11- // import inochi2d.core.nodes;
1210import inochi2d.core;
11+
1312public import inochi2d.core.nodes.drivers.simplephysics ;
1413
1514/**
Original file line number Diff line number Diff line change 77 Authors: Asahi Lina
88*/
99module inochi2d.core.nodes.drivers.simplephysics ;
10- private {
1110import inochi2d.core.nodes.drivers ;
12- import inochi2d.core.nodes.common ;
13- import inochi2d.core.guid ;
14- // import inochi2d.core.nodes;
15- // import inochi2d.core;
1611import inochi2d.core.format ;
12+ import inochi2d.core.guid ;
1713import inochi2d.core.math ;
1814import inochi2d.core.phys ;
1915import inochi2d;
20- import std.exception ;
2116import std.algorithm.sorting ;
22- import std.stdio ;
23- }
17+ import std.exception ;
2418
2519/**
2620 Physics model to use for simple physics
Original file line number Diff line number Diff line change @@ -10,10 +10,9 @@ module inochi2d.core.param.binding;
1010import inochi2d.core.format ;
1111import inochi2d.core.math ;
1212import inochi2d.core;
13+ import std.algorithm.mutation ;
1314import std.exception ;
1415import std.array ;
15- import std.algorithm.mutation ;
16- import std.stdio ;
1716
1817/**
1918 A target to bind to
@@ -1096,6 +1095,7 @@ class DeformationParameterBinding : ParameterBindingImpl!Deformation {
10961095
10971096@(" TestInterpolation" )
10981097unittest {
1098+ import std.stdio ;
10991099 void printArray (float [][] arr) {
11001100 foreach (row; arr) {
11011101 writefln(" %s" , row);
Original file line number Diff line number Diff line change @@ -450,7 +450,6 @@ public:
450450 auto swap = axisPoints[oldidx];
451451 axisPoints[axis] = axisPoints[axis].remove(oldidx);
452452 axisPoints[axis].insertInPlace(index, swap);
453- debug writeln(" after move " , this .axisPointCount(0 ));
454453 }
455454
456455 // Tell all bindings to reinterpolate
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import inmath;
1212import nulib;
1313import numem;
1414import inochi2d.core.render.texture ;
15- import inochi2d.core.nodes.common ;
1615import inochi2d.core.mesh ;
1716
1817/**
You can’t perform that action at this time.
0 commit comments