Sets the camera's reference point - the point the camera is looking at. The camera's position is the reference point translated by the offset.
[Visual Basic .NET] |
---|
Public Sub ViewOffsetWithUpAxis( _ ByVal Axes As IAgCrdnAxes, _ ByVal ReferencePoint As IAgCrdnPoint, _ ByVal Offset As System.Array, _ ByVal UpAxis As System.Array _ ) |
[C#] |
---|
public void ViewOffsetWithUpAxis( IAgCrdnAxes Axes, IAgCrdnPoint ReferencePoint, System.Array Offset, System.Array UpAxis ); |
[Managed C++] |
---|
public: void ViewOffsetWithUpAxis( IAgCrdnAxes ^ Axes, IAgCrdnPoint ^ ReferencePoint, System::Array ^ Offset, System::Array ^ UpAxis ); |
[Unmanaged C++] |
---|
public: HRESULT ViewOffsetWithUpAxis( IAgCrdnAxes * Axes, IAgCrdnPoint * ReferencePoint, SAFEARRAY * * Offset, SAFEARRAY * * UpAxis ); |
[Java] |
---|
public void viewOffsetWithUpAxis( IAgCrdnAxes Axes, IAgCrdnPoint ReferencePoint, AgSafeArray Offset, AgSafeArray UpAxis ); |
[Python - STK API ] |
---|
def ViewOffsetWithUpAxis(self, Axes:"IAgCrdnAxes", ReferencePoint:"IAgCrdnPoint", Offset:list, UpAxis:list) -> None: |
- Axes
- The Axes of rotation. Axes will be set to this.
- ReferencePoint
- The Point that will be evaluated at the animation time to get Reference Point.
- Offset
- An array containing the offset of the camera position (in the order x, y, z) relative to the referencePoint.
- 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] | ||
---|---|---|
|