Canguro.Commands.View.PredefinedXY.Run C# (CSharp) 메소드

Run() 공개 메소드

Executes the Non-Interactive Command. Sets the RotationMatrix for the View with a Default YZ View and Executes ZoomAll.
public Run ( Canguro activeView ) : void
activeView Canguro The Current Active View object
리턴 void
        public override void Run(Canguro.View.GraphicView activeView)
        {
            activeView.ArcBallCtrl.ResetRotation();
            activeView.ViewMatrix = activeView.ArcBallCtrl.ViewMatrix;
            ZoomAll.Instance.Run(activeView);
        }