Description
Gets or sets the reference point of the
camera. The array contains the components of the reference point
arranged in the order x, y, z.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
Public Property ReferencePoint() As Variant()
|
Example
Shows the format of
the Camera's ReferencePoint property.
| [C#] |
Copy Code
|
Array point = new object[]
{
31378.1,
0,
0
};
scene.Camera.ReferencePoint = point;
|
|
Shows the format of
the Camera's ReferencePoint property.
| [Visual Basic .NET] |
Copy Code
|
Dim point
As Array
= New Object() {31378.1, 0, 0}
scene.Camera.ReferencePoint = point
|
|
See Also