Uses of Class
org.jzy3d.maths.BoundingBox2d
-
Packages that use BoundingBox2d Package Description org.jzy3d.maths Provides mathematical tools: coordinates, spaces, grids, and trigonometry for 2 and 3 dimensions.org.jzy3d.plot3d.rendering.view -
-
Uses of BoundingBox2d in org.jzy3d.maths
Methods in org.jzy3d.maths that return BoundingBox2d Modifier and Type Method Description BoundingBox2d
BoundingBox3d. getBounds_XY()
BoundingBox2d
BoundingBox2d. scale(Coord2d scale)
Return a copy of the current bounding box after scaling.BoundingBox2d
BoundingBox2d. shift(Coord2d offset)
Methods in org.jzy3d.maths with parameters of type BoundingBox2d Modifier and Type Method Description void
BoundingBox2d. add(BoundingBox2d b)
Add a BoundingBox2d volume to the current one.boolean
BoundingBox2d. contains(BoundingBox2d b2)
Return true if b2 is contained by this box.boolean
BoundingBox2d. intersect(BoundingBox2d b2)
Return true if intersect b2. -
Uses of BoundingBox2d in org.jzy3d.plot3d.rendering.view
Fields in org.jzy3d.plot3d.rendering.view declared as BoundingBox2d Modifier and Type Field Description protected BoundingBox2d
Camera. renderingSquare
Methods in org.jzy3d.plot3d.rendering.view that return BoundingBox2d Modifier and Type Method Description BoundingBox2d
Camera. getRenderingSquare()
Return the rendering (X,Y) square that will be contained into the rendered 2D view.Methods in org.jzy3d.plot3d.rendering.view with parameters of type BoundingBox2d Modifier and Type Method Description void
Camera. setRenderingSquare(BoundingBox2d renderingSquare)
Set the boundaries of the model space that should be visible by the camera, for a 2D chart having only X and Y boundaries.
-