Class Box2d
Lightweight 2d box. An orthogonal box which the edges are all parallel with Cartesian Coordinate. The data contains in a Box2d is Min and Max.
public class Box2d : IExpandToBox2d, IEquatable<Box2d>, IBinaryIo, IWriteBin
- Inheritance
-
Box2d
- Implements
- Inherited Members
- Extension Methods
Constructors
Box2d()
Ctor.
public Box2d()
Box2d(NoInit)
public Box2d(Box2d.NoInit noInit)
Parameters
Box2d(params IExpandToBox2d[])
public Box2d(params IExpandToBox2d[] src)
Parameters
src
IExpandToBox2d[]
Box2d(Vec2d, Vec2d)
Ctor.
public Box2d(Vec2d min, Vec2d max)
Parameters
Box2d(box2d)
Ctor.
public Box2d(box2d src)
Parameters
src
box2dsrc
Box2d(IEnumerable<IExpandToBox2d>)
public Box2d(IEnumerable<IExpandToBox2d> src)
Parameters
Box2d(double, double, double, double)
public Box2d(double minx, double miny, double maxx, double maxy)
Parameters
Box2d(BinaryReader)
public Box2d(BinaryReader reader)
Parameters
reader
BinaryReader
Box2d(XElement)
Ctor.
public Box2d(XElement src)
Parameters
src
XElementXML
Properties
Center
Center
public Vec2d Center { get; }
Property Value
CenterUnitBox
Generate a center unit box which min~max is (-0.5,-0.5,-0.5)~(0.5,0.5,0.5).
public static Box2d CenterUnitBox { get; }
Property Value
DiagonalLength
Diagonal length.
public double DiagonalLength { get; }
Property Value
Dim
Dimension.
public Vec2d Dim { get; }
Property Value
HasVolume
public bool HasVolume { get; }
Property Value
IsAllNaN
public bool IsAllNaN { get; }
Property Value
IsFinite
True if the box is finite.
public bool IsFinite { get; }
Property Value
IsReversedPoleBox
True if the box is ReversedPoleBox
public bool IsReversedPoleBox { get; }
Property Value
Max
Maximum point of the box.
public Vec2d Max { get; set; }
Property Value
Min
Minimum point of the box.
public Vec2d Min { get; set; }
Property Value
NaN
Generate a nan box which min~max is (nan,nan,nan)~(nan,nan,nan).
public static Box2d NaN { get; }
Property Value
NativeByteSize
public static int NativeByteSize { get; }
Property Value
ReversedPoleBox
Generate a reversed pole box which min~max is (∞,∞,∞)~(-∞,-∞,-∞).
public static Box2d ReversedPoleBox { get; }
Property Value
UnitBox
Generate a unit box which min~max is (0,0,0)~(1,1,1).
public static Box2d UnitBox { get; }
Property Value
Volume
public double Volume { get; }
Property Value
XName
Name for XML IO.
public static string XName { get; }
Property Value
ZeroBox
Generate a zero box which min~max is (0,0,0)~(0,0,0).
public static Box2d ZeroBox { get; }
Property Value
Methods
ApexAt(int)
Get Apex at the box.
public Vec2d ApexAt(int index)
Parameters
index
intindex 0~7. all of 8 apex.
Returns
Equals(Box2d)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Box2d other)
Parameters
other
Box2dAn object to compare with this object.
Returns
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
Expand(Box2d)
public Box2d Expand(Box2d src)
Parameters
src
Box2d
Returns
Expand(Vec2d)
public Box2d Expand(Vec2d p)
Parameters
p
Vec2d
Returns
ExpandToBox2d(Box2d)
Expand the destinate box. This function is ususally used to compute the bounding box of elements.
public void ExpandToBox2d(Box2d dst)
Parameters
dst
Box2ddestinate box
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
IsOverlapped(Box2d)
Is the box overlapped to otherBox
.
public bool IsOverlapped(Box2d otherBox)
Parameters
otherBox
Box2dother box
Returns
- bool
is overlapped
MakeXmlSource(string)
public XElement MakeXmlSource(string baseDirectory)
Parameters
baseDirectory
string
Returns
ReadBin(BinaryReader)
Read binary data for initializing.
public void ReadBin(BinaryReader reader)
Parameters
reader
BinaryReaderreader
Scale(double)
Scale the box from the coordinate origin. The operation is equal to:
Min *= s;
Max *= s;
public Box2d Scale(double s)
Parameters
s
doublescale
Returns
- Box2d
this
ScaleFromCenter(double)
public Box2d ScaleFromCenter(double s)
Parameters
s
double
Returns
Set(Box2d)
public Box2d Set(Box2d src)
Parameters
src
Box2dsrc
Returns
- Box2d
this
Set(box2d)
public Box2d Set(box2d src)
Parameters
src
box2dsrc
Returns
- Box2d
this
Set(double, double, double, double)
public Box2d Set(double minx, double miny, double maxx, double maxy)
Parameters
Returns
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
Translate(Vec2d)
Translate the box.
public Box2d Translate(Vec2d vec)
Parameters
vec
Vec2dtranslation vector
Returns
- Box2d
this
WriteBin(BinaryWriter)
Write binary data.
public void WriteBin(BinaryWriter writer)
Parameters
writer
BinaryWriterwriter