AcTools.Render.Base.Cameras.CameraOrtho.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : BaseCamera
return BaseCamera
        public override BaseCamera Clone() {
            return new CameraOrtho {
                Width = Width,
                Height = Height,
                Up = Up,
                Target = Target,
                Position = Position
            };
        }