Package org.jzy3d.plot3d.rendering.view
Class Camera.Ortho
- java.lang.Object
-
- org.jzy3d.plot3d.rendering.view.Camera.Ortho
-
-
Field Summary
Fields Modifier and Type Field Description double
bottom
the latest value used to invoke glOrthodouble
far
the latest value used to invoke glOrthodouble
left
the latest value used to invoke glOrthodouble
near
the latest value used to invoke glOrthodouble
right
the latest value used to invoke glOrthodouble
top
the latest value used to invoke glOrtho
-
Constructor Summary
Constructors Constructor Description Ortho()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(IPainter painter)
Applies orthogonal projection only if parameters are valid (i.e. not zero)String
toString()
void
update(double left, double right, double bottom, double top, double near, double far)
-
-
-
Field Detail
-
left
public double left
the latest value used to invoke glOrtho
-
right
public double right
the latest value used to invoke glOrtho
-
bottom
public double bottom
the latest value used to invoke glOrtho
-
top
public double top
the latest value used to invoke glOrtho
-
near
public double near
the latest value used to invoke glOrtho
-
far
public double far
the latest value used to invoke glOrtho
-
-
Method Detail
-
update
public void update(double left, double right, double bottom, double top, double near, double far)
-
apply
public void apply(IPainter painter)
Applies orthogonal projection only if parameters are valid (i.e. not zero)
-
-