Example #1
0
		public RotateLeftTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}
Example #2
0
		public FlipVerticalTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}
Example #3
0
		public PanTool()
			: base(SR.TooltipPan)
		{
			this.CursorToken = new CursorToken("Icons.PanToolSmall.png", this.GetType().Assembly);
			_operation = new SpatialTransformImageOperation(Apply);
		}
		public FlipHorizontalTool()
		{
			_operation = new SpatialTransformImageOperation(Apply);
		}