Restructure chapters, delete a bunch of words, add more words, do some things, panic...
[ipdf/sam.git] / chapters / Background / CoordinateSystems.tex
diff --git a/chapters/Background/CoordinateSystems.tex b/chapters/Background/CoordinateSystems.tex
new file mode 100644 (file)
index 0000000..147a684
--- /dev/null
@@ -0,0 +1,46 @@
+Basic vector primitives composed of B{\'e}ziers may be rendered using only integer operations, once the starting and ending positions are rounded to the nearest pixel.
+
+However, a complete document will contain many such primitives which in general cannot all be shown on a display at once. A ``View'' rectangle can be defined to represent the size of the display relative to the document. To interact with the document a user can change this view through scaling or translating with the mouse\cite{}.
+
+Primitives which are contained within the view rectangle will be visible on the display. This involves the transformation from coordinates within the document to relative coordinates within the view rectangle as illustrated in Figure \ref{}. A point $(X,Y)$ in the document will transform to a point $(x,y)$ in the view by:
+\begin{align}
+       X = \frac{x - v_x}{v_w} &\quad\quad Y = \frac{y - v_y}{v_h}\label{view-transformation}
+\end{align}
+Where $(v_x,v_y)$ are the coordinates of the top left corner and $(v_w,v_h)$ are the dimensions of the view rectangle.
+
+
+The transformation may also be written as a 3x3 matrix $\matx{V}$ if we introduce a third coordinate $Z = 1$
+\begin{align}
+       \matx{X} &= \matx{V} \matx{x} \\
+       \left( \begin{array}{c} X \\ Y \\ 1 \end{array}\right) &= 
+       \left( \begin{array}{ccc} 
+               \frac{1}{v_w} & 0 & \frac{v_x}{v_w} \\
+               0 & \frac{1}{v_h} & \frac{v_y}{v_h} \\
+               0 & 0 & 1 
+       \end{array}\right) 
+       \left( \begin{array}{c} x \\ y \\ 1 \end{array}\right)\label{view-transformation-matrix}
+\end{align}
+
+
+
+Moving the mouse\footnote{or on a touch screen, swiping the screen} by a distance $(\Delta x, \Delta y)$ relative to the size of the view should translate it by the same amount\cite{}:
+\begin{align}
+       v_x \to v_x + \Delta x \\
+       v_y \to v_y + \Delta y
+\end{align}
+
+The document can be scaled by a factor of $s$ about a point $(x_0,y_0)$ specified relative to the view (such as the position of the mouse cursor)\cite{}:
+\begin{align}
+       v_x \to v_x + x_0 v_w(1 - s) \\
+       v_y \to v_y + y_0 v_h(1 - s) \\
+       v_w \to s v_w \\
+       v_h \to s v_h
+\end{align}
+
+The effect of this transformation is that, measured relative to the view rectangle, the distance of primitives with coordinates $(x, y)$ to the point $(x_0, y_0)$ will decrease by a factor of $s$. For $s < 1$ the operation is ``zooming out'' and for $s > 1$, ``zooming in''.
+
+%TODO List
+% Mention that these transformations affect precision more than eg: drawing a line
+% Discuss floating point errors that could occur?
+% Convert operations to Matrix form, more standard
+% Cite some UI paper or something

UCC git Repository :: git.ucc.asn.au