idTech4.Geometry.idWinding.this C# (CSharp) Method

this() public method

public this ( int x ) : Vector3
x int
return Vector3
		public Vector3 this[int x]
		{
			get
			{
				return new Vector3(_points[x, 0], _points[x, 1], _points[x, 2]);
			}
		}

Same methods

idWinding::this ( int x, int y ) : float