Uses of Enum
org.jzy3d.plot3d.rendering.view.ClipEq

Packages that use ClipEq
  • 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 glClipPlane
    protected 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

    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.