Package geomss.geom
Interface Subrange<T extends GeomElement>
-
- Type Parameters:
T
- The type of this subrange object.
- All Known Implementing Classes:
SubrangeCurve
,SubrangePoint
,SubrangeSurface
public interface Subrange<T extends GeomElement>
Defines the interface forGeomElement
objects that are subranges of otherParametricGeometry
objects.Modified by: Joseph A. Huwaldt
- Version:
- September 3, 2015
- Author:
- Joseph A. Huwaldt, Date: May 28, 2009
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParametricGeometry
getChild()
Returns the child object this subrange object is subranged onto.T
getParPosition()
Returns the parametric position on the child object that this subrange refers to.void
setParPosition(T par)
Sets the parametric position on the child object that this subrange refers to.
-
-
-
Method Detail
-
getParPosition
T getParPosition()
Returns the parametric position on the child object that this subrange refers to.- Returns:
- The parametric position on the child object that this subrange refers to.
-
setParPosition
void setParPosition(T par)
Sets the parametric position on the child object that this subrange refers to.- Parameters:
par
- The parametric position (between 0 and 1) along each parametric dimension where the subrange is located (may not benull
).
-
getChild
ParametricGeometry getChild()
Returns the child object this subrange object is subranged onto.- Returns:
- The child object this object is subranged onto.
-
-