tail method
Returns the tail of this half-edge. That's a reference to the previous half-edge vertex.
Implementation
Vector3? tail() {
return prev?.vertex;
}
Returns the tail of this half-edge. That's a reference to the previous half-edge vertex.
Vector3? tail() {
return prev?.vertex;
}