SpaceClaim.AddIn.Unfold.FlatBody.GetBoundingBox C# (CSharp) Method

GetBoundingBox() public method

public GetBoundingBox ( System.Matrix trans ) : Box
trans System.Matrix
return Box
        public Box GetBoundingBox(Matrix trans)
        {
            Box box = Box.Empty;
            foreach (FlatFace flatFace in flatFaces)
                box |= flatFace.GetBoundingBox(trans);

            return box;
        }