OctreeNode.GetNode C# (CSharp) 메소드

GetNode() 공개 메소드

public GetNode ( float xMax, float xMin, float yMax, float yMin, float zMax, float zMin, ArrayList nodes ) : ArrayList
xMax float
xMin float
yMax float
yMin float
zMax float
zMin float
nodes ArrayList
리턴 ArrayList
    public ArrayList GetNode(float xMax, float xMin, float yMax, float yMin, float zMax, float zMin, ArrayList nodes)
    {
        return GetNode(new OctreeBox(xMax, xMin, yMax, yMin, zMax, zMin), nodes);
    }

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 ( Vector3 vector ) : object
OctreeNode::GetNode ( Vector3 vector, double shortestDistance ) : object
OctreeNode::GetNode ( float x, float y, float z ) : object
OctreeNode::GetNode ( float x, float y, float z, double shortestDistance ) : object

Usage Example

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