BananaMpq.Geometry.IndexedTriangleWithNormal.BoundsIn C# (CSharp) 메소드

BoundsIn() 공개 메소드

public BoundsIn ( IList vertices ) : BoundingBox
vertices IList
리턴 BoundingBox
        public BoundingBox BoundsIn(IList<Vector3> vertices)
        {
            return BoundingBox.FromPoints(new[] { vertices[A], vertices[B], vertices[C] });
        }