TeX2img.BoundingBox.BoundingBox C# (CSharp) 메소드

BoundingBox() 공개 메소드

public BoundingBox ( decimal l, decimal b, decimal r, decimal t ) : System
l decimal
b decimal
r decimal
t decimal
리턴 System
        public BoundingBox(decimal l, decimal b, decimal r, decimal t) {
            left = l; right = r; bottom = b; top = t;
        }
        public bool IsEmpty { get { return Width <= 0 || Height <= 0; } }