OctreeNode.GetNode C# (CSharp) Method

GetNode() public method

public GetNode ( float x, float y, float z ) : object
x float
y float
z float
return object
    public object GetNode(float x, float y, float z)
    {
        return GetNode(x, y, z, Double.PositiveInfinity);
    }

Same methods

OctreeNode::GetNode ( OctreeBox, rect, ArrayList nodes ) : ArrayList
OctreeNode::GetNode ( float xMax, float xMin, float yMax, float yMin, float zMax, float zMin ) : ArrayList
OctreeNode::GetNode ( float xMax, float xMin, float yMax, float yMin, float zMax, float zMin, ArrayList nodes ) : ArrayList
OctreeNode::GetNode ( Vector3 vector ) : object
OctreeNode::GetNode ( Vector3 vector, double shortestDistance ) : object
OctreeNode::GetNode ( float x, float y, float z, double shortestDistance ) : object

Usage Example

Beispiel #1
0
 public object GetNode(float x, float y, float z)
 {
     return(Top.GetNode(x, y, z));
 }