Click or drag to resize

VisualAlignToFloor Method

Align the mesh bounding box of the Visual to the default FloorVisual of the Scene.

Namespace:  Demo3D.Visuals
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public void AlignToFloor()
Examples
C#
[Auto] void OnInitialize(Visual sender)
{
    // same as sender.AlignToFloor(null), align to Scene.DefaultFloor
    sender.AlignToFloor();
}
See Also