Uses of Class
org.jzy3d.plot3d.rendering.view.ClipEq
-
Packages that use ClipEq Package Description org.jzy3d.painters org.jzy3d.plot3d.rendering.view -
-
Uses of ClipEq in org.jzy3d.painters
Methods in org.jzy3d.painters with parameters of type ClipEq Modifier and Type Method Description void
AbstractPainter. clip(int plane, ClipEq equation, double value)
A convenient shortcut to invoke a clipping plane using an ID in [0;5] instead of the original OpenGL ID value.void
IPainter. clip(int plane, ClipEq equation, double value)
A convenient shortcut to glClipPlaneprotected double[]
AbstractPainter. equation(ClipEq eq, double value)
The four coefs of the plane equation that are returned by this method are : Nx, Ny, Nz, D The solve the formula : Nx*x + Ny*y + Nz*z + D = 0 where Nx, Ny and Nz are the 3 components of the normal to the plane. -
Uses of ClipEq in org.jzy3d.plot3d.rendering.view
Methods in org.jzy3d.plot3d.rendering.view that return ClipEq Modifier and Type Method Description static ClipEq
ClipEq. valueOf(String name)
Returns the enum constant of this type with the specified name.static ClipEq[]
ClipEq. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-