The culling volume defined by planes.
    
    
    
    
    
    
        
| Name | Type | Description | 
|---|---|---|
| planes | Array.<Cartesian4> | An array of clipping planes. | 
Members
- 
    planes : Array.<Cartesian4>
- 
    
    Each plane is represented by a Cartesian4 object, where the x, y, and z components define the unit vector normal to the plane, and the w component is the distance of the plane from the origin.- 
    
    
    
    
    
    
    
    
    
    Default Value:
    
 []
Methods
- 
    computeVisibility(boundingVolume) → Intersect
- 
    
    Determines whether a bounding volume intersects the culling volume.Name Type Description boundingVolumeObject The bounding volume whose intersection with the culling volume is to be tested. Returns:Intersect.OUTSIDE, Intersect.INTERSECTING, or Intersect.INSIDE.
