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 forGeomElementobjects that are subranges of otherParametricGeometryobjects.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 ParametricGeometrygetChild()Returns the child object this subrange object is subranged onto.TgetParPosition()Returns the parametric position on the child object that this subrange refers to.voidsetParPosition(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.
-
-