Views from a point to a point. Sets the camera's position and the reference point the camera is looking at.
[Visual Basic .NET] |
---|
Public Sub ViewWithUpAxis( _ ByVal Axes As IAgCrdnAxes, _ ByVal CameraPosition As IAgCrdnPoint, _ ByVal ReferencePoint As IAgCrdnPoint, _ ByVal UpAxis As System.Array _ ) |
[C#] |
---|
public void ViewWithUpAxis( IAgCrdnAxes Axes, IAgCrdnPoint CameraPosition, IAgCrdnPoint ReferencePoint, System.Array UpAxis ); |
[Managed C++] |
---|
public: void ViewWithUpAxis( IAgCrdnAxes ^ Axes, IAgCrdnPoint ^ CameraPosition, IAgCrdnPoint ^ ReferencePoint, System::Array ^ UpAxis ); |
[Unmanaged C++] |
---|
public: HRESULT ViewWithUpAxis( IAgCrdnAxes * Axes, IAgCrdnPoint * CameraPosition, IAgCrdnPoint * ReferencePoint, SAFEARRAY * * UpAxis ); |
[Java] |
---|
public void viewWithUpAxis( IAgCrdnAxes Axes, IAgCrdnPoint CameraPosition, IAgCrdnPoint ReferencePoint, AgSafeArray UpAxis ); |
[Python - STK API ] |
---|
def ViewWithUpAxis(self, Axes:"IAgCrdnAxes", CameraPosition:"IAgCrdnPoint", ReferencePoint:"IAgCrdnPoint", UpAxis:list) -> None: |
- Axes
- The Axes of rotation. Axes will be set to this.
- CameraPosition
- The Point that will be evaluated at the animation time to get Position.
- ReferencePoint
- The Point that will be evaluated at the animation time to get Reference Point.
- UpAxis
- An array containing the up direction (in the order x, y, z) in axes.
Shows the format of the Offset and UpAxis parameters when setting the camera's reference point with an offset.
[C#] | ||
---|---|---|
|
Shows the format of the Offset and UpAxis parameters when setting the camera's reference point with an offset.
[Visual Basic .NET] | ||
---|---|---|
|