public Rectangle (Point location, Size size) : this (location.X, location.Y, size.Width, size.Height)
		{
		}
		public Size UnscaleSize (Size s)
		{
			return new Size (UnscaleScalar (s.Width), UnscaleScalar (s.Height));
		}