public AbstractTool(double width, double height) { this.Width = (int)width; this.Height = (int)height; this.ball = new ArcBall(width * 0.9, height * 0.9); this.ScaleRatio = (width > height) ? height : width; }
public ToolMovePoint(double width, double height, TriMesh mesh) : base(width, height, mesh) { movingBall = new ArcBall(200, 200); }
public ToolMoveSinglePoint(double width, double height, TriMesh mesh) : base(width, height, mesh) { movingBall = new ArcBall(200, 200); }
public AbstractTool(double width,double height) { this.Width =(int) width; this.Height =(int) height; this.ball = new ArcBall(width * 0.9, height * 0.9); this.ScaleRatio = (width > height) ? height : width; }