Adds a point to the AABB.

Namespace: JigLibX.Geometry
Assembly: JigLibX (in JigLibX.dll) Version: 0.3.1.0

Syntax

C#
public void AddPoint(
	ref Vector3 pos
)
Visual Basic
Public Sub AddPoint ( _
	ByRef pos As Vector3 _
)
Visual C++
public:
void AddPoint(
	Vector3% pos
)

Parameters

pos
Type: Vector3%

[Missing <param name="pos"/> documentation for "M:JigLibX.Geometry.AABox.AddPoint(Microsoft.Xna.Framework.Vector3@)"]

Remarks

This function is heavily used to calculate the axis aligned bounding boxes arround any object. Calling by reference is unusal but makes it faster.

See Also