コード例 #1
0
ファイル: Z6Fractal.java プロジェクト: iande/mathlib
 public void iterate(Complex z, Complex c) {
   PowInt.mutatePower(6, z);
   z.setValue(z.getReal() + c.getReal(), z.getImaginary() + c.getImaginary());
 }
コード例 #2
0
ファイル: Z6Fractal.java プロジェクト: iande/mathlib
 public boolean test(Complex c) {
   return c.magnitudeSquared() <= 4;
 }