Package | Description |
---|---|
jahuwaldt.aero.panelgeom |
Modifier and Type | Method and Description |
---|---|
GeomPoint[][] |
GeomNetwork.getAllPoints()
Return all the 3D points that make up this network.
|
GeomPoint |
GeomElement.getBoundsMax()
Return the coordinate point representing the maximum bounding box corner (max X,
max Y, max Z).
|
GeomPoint |
GeomElementList.getBoundsMax()
Return the coordinate point representing the maximum bounding box corner (max X,
max Y, max Z).
|
GeomPoint |
GeomNetwork.getBoundsMax()
Return the coordinate point representing the maximum bounding box corner (max X,
max Y, max Z).
|
GeomPoint |
GeomPanel.getBoundsMax()
Return the coordinate point representing the maximum bounding box corner (max X,
max Y, max Z).
|
GeomPoint |
GeomElement.getBoundsMin()
Return the coordinate point representing the minimum bounding box corner (min X,
min Y, min Z).
|
GeomPoint |
GeomElementList.getBoundsMin()
Return the coordinate point representing the minimum bounding box corner (min X,
min Y, min Z).
|
GeomPoint |
GeomNetwork.getBoundsMin()
Return the coordinate point representing the minimum bounding box corner (min X,
min Y, min Z).
|
GeomPoint |
GeomPanel.getBoundsMin()
Return the coordinate point representing the minimum bounding box corner (min X,
min Y, min Z).
|
GeomPoint |
GeomPanel.getCentroid()
Return the centroid location for this panel.
|
static GeomPoint |
GeomPoint.getInstance()
Create an instance of a GeomPoint object where everything is set to zero.
|
static GeomPoint |
GeomPoint.getInstance(double x,
double y,
double z)
Create an instance of a GeomPoint object by providing the coordinate values.
|
GeomPoint |
GeomPanel.getNormal()
Return the unit normal vector for this panel.
|
GeomPoint |
GeomNetwork.getNormal(int row,
int col)
Return the normal vector for the specified panel in this network.
|
GeomPoint |
GeomPanel.getPoint1()
Return the corner point #1.
|
GeomPoint |
GeomPanel.getPoint2()
Return the corner point #2.
|
GeomPoint |
GeomPanel.getPoint3()
Return the corner point #3.
|
GeomPoint |
GeomPanel.getPoint4()
Return the corner point #4.
|
Modifier and Type | Method and Description |
---|---|
static void |
GeomPoint.freeInstance(GeomPoint point)
Add an instance of a GeomPoint object to the object pool so that it can be re-used
again.
|
static GeomPanel |
GeomPanel.getInstance(GeomPoint p1,
GeomPoint p2,
GeomPoint p3,
GeomPoint p4)
Create an instance of a GeomPanel object that has the given points for corner
points.
|
static GeomPanel |
GeomPanel.getInstance(GeomPoint p1,
GeomPoint p2,
GeomPoint p3,
GeomPoint p4,
GeomPoint normal,
GeomPoint centroid,
double area)
Create an instance of a GeomPanel object that has the given points for corner
points, the given point for a unit normal vector and the given surface area.
|
Constructor and Description |
---|
GeomNetwork(GeomPoint[][] pointArr,
java.lang.String name)
Create a network made up of a 2D array of 3D points.
|