File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,31 @@ public void bezierDetail(double detail) {
5858 super .bezierDetail ((int ) detail );
5959 }
6060
61+ public void curveDetail (double detail ) {
62+ this .logWarningsforCast ();
63+ super .curveDetail ((int ) detail );
64+ }
65+
66+ public void sphereDetail (double res ) {
67+ this .logWarningsforCast ();
68+ super .sphereDetail ((int ) res );
69+ }
70+
71+ public void sphereDetail (double ures , double vres ) {
72+ this .logWarningsforCast ();
73+ super .sphereDetail ((int ) ures , (int ) vres );
74+ }
75+
76+ public void noiseDetail (double lod ) {
77+ this .logWarningsforCast ();
78+ super .noiseDetail ((int ) lod );
79+ }
80+
81+ public void noiseDetail (double lod , double falloff ) {
82+ this .logWarningsforCast ();
83+ super .noiseDetail ((int ) lod , (float ) falloff );
84+ }
85+
6186 public void colorMode (double mode ) {
6287 this .logWarningsforCast ();
6388 super .colorMode ((int ) mode );
You can’t perform that action at this time.
0 commit comments