Interface FractionOn<T>
- Type Parameters:
T
- The underlying concrete class representing the (linear) element
- All Known Implementing Classes:
ElementProjection
public interface FractionOn<T>
Object representing a point as a fraction along a (linear) element.
-
Method Summary
-
Method Details
-
element
T element() -
fraction
double fraction()The fraction specifies how far along the length ofelement
the point is located. It has a value between 0.0 (the point is at the start ofelement
) and 1.0 (the point is at the end ofelement
).
-