texCoord1 method

GeometryBuilder texCoord1(
  1. Vector2 value
)

Sets the secondary texture coordinate for subsequent vertices.

Implementation

GeometryBuilder texCoord1(Vector2 value) {
  _texCoord1 = value.clone();
  return this;
}