  | AabbScale Method  | 
            Scales the AABB.
            
 
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntaxpublic void Scale(
	Vector3F scale
)
Public Sub Scale ( 
	scale As Vector3F
)
public:
void Scale(
	Vector3F scale
)
member Scale : 
        scale : Vector3F -> unit 
Parameters
- scale
 - Type: DigitalRune.Mathematics.AlgebraVector3F
            The scale factors for the dimensions x, y and z.
            The scale factors can be negative to mirror the AABB.
             
Remarks
            The AABB limits are multiplied with the scale factors.
            
See Also