Package renderer.models_L
Class PanelXY
- java.lang.Object
-
- renderer.scene.Model
-
- renderer.models_L.PanelXY
-
-
Field Summary
-
Fields inherited from class renderer.scene.Model
colorList, name, primitiveList, vertexList, visible
-
-
Constructor Summary
Constructors Constructor Description PanelXY()
Create a flat checkerboard panel in the xy-plane that runs from -1 to 1 in the x-direction and -1 to 1 in the y-direction.PanelXY(int xMin, int xMax, int yMin, int yMax)
Create a flat checkerboard panel in the xy-plane with the given dimensions.PanelXY(int xMin, int xMax, int yMin, int yMax, double z)
Create a flat checkerboard panel parallel to the xy-plane with the given dimensions.
-
-
-
Constructor Detail
-
PanelXY
public PanelXY()
Create a flat checkerboard panel in the xy-plane that runs from -1 to 1 in the x-direction and -1 to 1 in the y-direction.
-
PanelXY
public PanelXY(int xMin, int xMax, int yMin, int yMax)
Create a flat checkerboard panel in the xy-plane with the given dimensions.- Parameters:
xMin
- location of left edgexMax
- location of right edgeyMin
- location of bottom edgeyMax
- location of top edge
-
PanelXY
public PanelXY(int xMin, int xMax, int yMin, int yMax, double z)
Create a flat checkerboard panel parallel to the xy-plane with the given dimensions.- Parameters:
xMin
- location of left edgexMax
- location of right edgeyMin
- location of bottom edgeyMax
- location of top edgez
- z-plane that holds the panel
-
-