ChristopherChudzicki / math3d

Legacy version: Use math3d-react repo instead
MIT License
12 stars 4 forks source link

Implicit Surfaces #89

Open ChristopherChudzicki opened 7 years ago

ChristopherChudzicki commented 7 years ago

Currently only explicit surfaces and parametric surfaces are supported. It would be great to support implicit surfaces: x^2+y^2+z^2=9 and 4x+3y-2z=12. It will be slow to create and modify the surfaces, but that should only affect animation.

Marching squares seems to be the standard algorithm for drawing implicit surfaces.