Click or drag to resize

WalkthroughManagerAvatarPosition Property

아바타 위치(Avatar Position)

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public Vertex3D AvatarPosition { get; set; }

Property Value

Type: Vertex3D
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    vizcore3d.BeginUpdate();

    vizcore3d.Walkthrough.Avatar = true;
    vizcore3d.Walkthrough.AvatarPosition = new Data.Vertex3D(19427.13f, 1204.982f, 2335.0f);

    vizcore3d.EndUpdate();
}
See Also