Description
This enum defines the scale transform behavior of transient graphics.
C#
public enum ScaleBehavior { World, Viewport, Screen, ViewportLocalOrigin, ScreenLocalOrigin }
Visual Basic
Public Enum ScaleBehavior World Viewport Screen ViewportLocalOrigin ScreenLocalOrigin End Enum
Members
Members | Description |
---|---|
World | Specification of transforms in world space. This is the default behavior |
Viewport | This is a normalized viewport 2D coordinate system, X and Y axes running from 0.0 to 1.0, with (0.0, 0.0) at the lower left and (1.0, 1.0) at the upper right |
Screen | This scales the geometry in absolute pixels |
ViewportLocalOrigin | Same as Viewport but for the 3D local coordinate system |
ScreenLocalOrigin | Same as Screen but for the 3D local coordinate system |