tail method

Vector3? tail()

Returns the tail of this half-edge. That's a reference to the previous half-edge vertex.

Implementation

Vector3? tail() {
	return prev?.vertex;
}