gdal.Envelope3D
A 3D bounding box. For 2D envelopes, see gdal.Envelope.
(Pure-javascript implementation of OGREnvelope3D)
Table of Contents
Constructor
gdal.Envelope3D
		
			(
	- 
						
bounds 
Parameters:
- 
						
boundsObjectAn object containing
minX,maxX,minY,maxY,minZ, andmaxZvalues. 
Methods
contains
		
			(
		
			Boolean
		
	- 
						
envelope 
Determines if the provided envelope is wholly-contained by the current envelope.
Parameters:
- 
						
envelopegdal.Envelope3D 
Returns:
						Boolean
			
		intersect
		
			(
		
			Void
		
	- 
						
envelope 
Updates the envelope to the intersection of the two envelopes.
Parameters:
- 
						
envelopegdal.Envelope3D 
Returns:
						Void
			
		intersects
		
			(
		
			Boolean
		
	- 
						
envelope 
Determines if the provided envelope touches it.
Parameters:
- 
						
envelopegdal.Envelope3D 
Returns:
						Boolean
			
		isEmpty
		()
		
			Boolean
		
	Determines if the envelope has not been set yet.
Returns:
						Boolean
			
		merge
		
			(
		
			Void
		
	- 
						
envelope 
Unions the provided envelope with the current envelope.
Parameters:
- 
						
envelopegdal.Envelope3D 
Returns:
						Void