Package | Description |
---|---|
magma.util.function |
Modifier and Type | Class and Description |
---|---|
class |
SupportPoint
A simple class representing support points in 2D space.
|
Modifier and Type | Method and Description |
---|---|
ISupportPoint |
IFunction.getSupportPoint(int index)
Retrieve the SupportPoint at the given index
|
ISupportPoint |
IFunction.removeSupportPoint(int index)
Remove the SupportPoint at the given index if possible.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<ISupportPoint> |
SupportPointFunction.getSupportPointsInArea(float minX,
float maxX,
float minY,
float maxY) |
java.util.List<ISupportPoint> |
IFunction.getSupportPointsInArea(float minX,
float maxX,
float minY,
float maxY)
Get the SupportPoints of this function in the given area.
|
Modifier and Type | Method and Description |
---|---|
int |
SupportPointFunction.indexOf(ISupportPoint supportPoint) |
int |
IFunction.indexOf(ISupportPoint supportPoint)
Retrieve the index of the given SupportPoint.
|
org.apache.commons.math3.geometry.euclidean.twod.Vector2D |
SupportPointFunction.moveSupportPoint(ISupportPoint point,
float xMove,
float yMove) |
org.apache.commons.math3.geometry.euclidean.twod.Vector2D |
IFunction.moveSupportPoint(ISupportPoint point,
float xMove,
float yMove) |
org.apache.commons.math3.geometry.euclidean.twod.Vector2D |
SupportPointFunction.moveSupportPointTo(ISupportPoint point,
float x,
float y) |
org.apache.commons.math3.geometry.euclidean.twod.Vector2D |
IFunction.moveSupportPointTo(ISupportPoint point,
float x,
float y) |