HOME

TheInfoList



OR:

Orthographic projection (also orthogonal projection and analemma) is a means of representing
three-dimensional Three-dimensional space (also: 3D space, 3-space or, rarely, tri-dimensional space) is a geometric setting in which three values (called ''parameters'') are required to determine the position of an element (i.e., point). This is the informal ...
objects in
two dimensions In mathematics, a plane is a Euclidean ( flat), two-dimensional surface that extends indefinitely. A plane is the two-dimensional analogue of a point (zero dimensions), a line (one dimension) and three-dimensional space. Planes can arise as ...
. Orthographic projection is a form of
parallel projection In three-dimensional geometry, a parallel projection (or axonometric projection) is a projection of an object in three-dimensional space onto a fixed plane, known as the ''projection plane'' or '' image plane'', where the ''rays'', known as '' li ...
in which all the projection lines are
orthogonal In mathematics, orthogonality is the generalization of the geometric notion of ''perpendicularity''. By extension, orthogonality is also used to refer to the separation of specific features of a system. The term also has specialized meanings in ...
to the
projection plane A projection plane, or plane of projection, is a type of view in which graphical projections from an object intersect.Gary R. Bertoline et al. (2002) ''Technical Graphics Communication''. McGraw–Hill Professional, 2002. , p. 330. Projection plane ...
, resulting in every plane of the scene appearing in
affine transformation In Euclidean geometry, an affine transformation or affinity (from the Latin, ''affinis'', "connected with") is a geometric transformation that preserves lines and parallelism, but not necessarily Euclidean distances and angles. More generally, ...
on the viewing surface. The obverse of an orthographic projection is an
oblique projection Oblique projection is a simple type of technical drawing of graphical projection used for producing two-dimensional (2D) images of three-dimensional (3D) objects. The objects are not in perspective (graphical), perspective and so do not corre ...
, which is a parallel projection in which the projection lines are ''not'' orthogonal to the projection plane. The term ''orthographic'' sometimes means a technique in
multiview projection In technical drawing and computer graphics, a multiview projection is a technique of illustration by which a standardized series of orthographic two-dimensional pictures are constructed to represent the form of a three-dimensional object. Up to ...
in which principal axes or the planes of the subject are also parallel with the projection plane to create the ''primary views''. If the principal planes or axes of an object in an orthographic projection are ''not'' parallel with the projection plane, the depiction is called ''axonometric'' or an ''auxiliary views''. (''Axonometric projection'' is synonymous with ''parallel projection''.) Sub-types of ''primary views'' include ''plans'', ''elevations'', and ''sections''; sub-types of ''auxiliary views'' include ''isometric'', ''dimetric'', and ''trimetric projections''. A lens that provides an orthographic projection is an object-space telecentric lens.


Geometry

A simple orthographic
projection Projection, projections or projective may refer to: Physics * Projection (physics), the action/process of light, heat, or sound reflecting from a surface to another in a different direction * The display of images by a projector Optics, graphic ...
onto the
plane Plane(s) most often refers to: * Aero- or airplane, a powered, fixed-wing aircraft * Plane (geometry), a flat, 2-dimensional surface Plane or planes may also refer to: Biology * Plane (tree) or ''Platanus'', wetland native plant * ''Planes' ...
''z'' = 0 can be defined by the following matrix: : P = \begin 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 0 \\ \end For each point ''v'' = (''v''''x'', ''v''''y'', ''v''''z''), the transformed point ''Pv'' would be : Pv = \begin 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 0 \\ \end \begin v_x \\ v_y \\ v_z \end = \begin v_x \\ v_y \\ 0 \end Often, it is more useful to use
homogeneous coordinates In mathematics, homogeneous coordinates or projective coordinates, introduced by August Ferdinand Möbius in his 1827 work , are a system of coordinates used in projective geometry, just as Cartesian coordinates are used in Euclidean geometry. T ...
. The transformation above can be represented for homogeneous coordinates as : P = \begin 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 1 \end For each homogeneous vector ''v'' = (''v''''x'', ''v''''y'', ''v''''z'', 1), the transformed vector ''Pv'' would be : Pv = \begin 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 1 \end \begin v_x \\ v_y \\ v_z \\ 1 \end = \begin v_x \\ v_y \\ 0 \\ 1 \end In
computer graphics Computer graphics deals with generating images with the aid of computers. Today, computer graphics is a core technology in digital photography, film, video games, cell phone and computer displays, and many specialized applications. A great de ...
, one of the most common matrices used for orthographic
projection Projection, projections or projective may refer to: Physics * Projection (physics), the action/process of light, heat, or sound reflecting from a surface to another in a different direction * The display of images by a projector Optics, graphic ...
can be defined by a 6-tuple, (''left'', ''right'', ''bottom'', ''top'', ''near'', ''far''), which defines the
clipping Clipping may refer to: Words * Clipping (morphology), the formation of a new word by shortening it, e.g. "ad" from "advertisement" * Clipping (phonetics), shortening the articulation of a speech sound, usually a vowel * Clipping (publications) ...
planes. These planes form a box with the minimum corner at (''left'', ''bottom'', -''near'') and the maximum corner at (''right'', ''top'', -''far''). The box is translated so that its center is at the origin, then it is scaled to the unit cube which is defined by having a minimum corner at (−1,−1,−1) and a maximum corner at (1,1,1). The orthographic transform can be given by the following matrix: : P = \begin \frac & 0 & 0 & -\frac \\ 0 & \frac & 0 & -\frac \\ 0 & 0 & \frac & -\frac \\ 0 & 0 & 0 & 1 \end which can be given as a
scaling Scaling may refer to: Science and technology Mathematics and physics * Scaling (geometry), a linear transformation that enlarges or diminishes objects * Scale invariance, a feature of objects or laws that do not change if scales of length, energ ...
''S'' followed by a
translation Translation is the communication of the Meaning (linguistic), meaning of a #Source and target languages, source-language text by means of an Dynamic and formal equivalence, equivalent #Source and target languages, target-language text. The ...
''T'' of the form : P = ST = \begin \frac & 0 & 0 & 0 \\ 0 & \frac & 0 & 0 \\ 0 & 0 & \frac & 0 \\ 0 & 0 & 0 & 1 \end \begin 1 & 0 & 0 & -\frac \\ 0 & 1 & 0 & -\frac \\ 0 & 0 & -1 & -\frac \\ 0 & 0 & 0 & 1 \end The inversion of the projection matrix ''P−1'', which can be used as the unprojection matrix is defined: P^ = \begin \frac & 0 & 0 & \frac \\ 0 & \frac & 0 & \frac \\ 0 & 0 & \frac & -\frac \\ 0 & 0 & 0 & 1 \end


Types

Three sub-types of orthographic projection are ''
isometric projection Isometric projection is a method for visually representing three-dimensional objects in two dimensions in technical and engineering drawings. It is an axonometric projection in which the three coordinate axes appear equally foreshortened and ...
'', ''dimetric projection'', and ''trimetric projection'', depending on the exact angle at which the view deviates from the orthogonal. Typically in axonometric drawing, as in other types of pictorials, one axis of space is shown to be vertical. In isometric projection, the most commonly used form of axonometric projection in engineering drawing, the direction of viewing is such that the three axes of space appear equally
foreshortened Linear or point-projection perspective (from la, perspicere 'to see through') is one of two types of 3D projection, graphical projection perspective in the graphic arts; the other is parallel projection. Linear perspective is an approximate r ...
, and there is a common angle of 120° between them. As the distortion caused by foreshortening is uniform, the proportionality between lengths is preserved, and the axes share a common scale; this eases one's ability to take measurements directly from the drawing. Another advantage is that 120° angles are easily constructed using only a
compass and straightedge In geometry, straightedge-and-compass construction – also known as ruler-and-compass construction, Euclidean construction, or classical construction – is the construction of lengths, angles, and other geometric figures using only an ideali ...
. In dimetric projection, the direction of viewing is such that two of the three axes of space appear equally foreshortened, of which the attendant scale and angles of presentation are determined according to the angle of viewing; the scale of the third direction is determined separately. Dimensional approximations are common in dimetric drawings. In trimetric projection, the direction of viewing is such that all of the three axes of space appear unequally foreshortened. The scale along each of the three axes and the angles among them are determined separately as dictated by the angle of viewing. Dimensional approximations in trimetric drawings are common, and trimetric perspective is seldom used in technical drawings.


Multiview projection

In ''multiview projection'', up to six pictures of an object are produced, called ''primary views'', with each projection plane parallel to one of the coordinate axes of the object. The views are positioned relative to each other according to either of two schemes: ''first-angle'' or ''third-angle'' projection. In each, the appearances of views may be thought of as being ''projected'' onto planes that form a six-sided box around the object. Although six different sides can be drawn, usually three views of a drawing give enough information to make a three-dimensional object. These views are known as ''front view'', ''top view'' and ''end view''. Other names for these views include ''plan'', ''elevation'' and ''section''. When the plane or axis of the object depicted is ''not'' parallel to the projection plane, and where multiple sides of an object are visible in the same image, it is called an ''auxiliary view''. Thus ''isometric projection'', ''dimetric projection'' and ''trimetric projection'' would be considered ''auxiliary views'' in multiview projection. A typical characteristic of multiview projection is that one axis of space is usually displayed as vertical.


Cartography

An orthographic projection map is a
map projection In cartography, map projection is the term used to describe a broad set of transformations employed to represent the two-dimensional curved surface of a globe on a plane. In a map projection, coordinates, often expressed as latitude and longitud ...
of
cartography Cartography (; from grc, χάρτης , "papyrus, sheet of paper, map"; and , "write") is the study and practice of making and using maps. Combining science, aesthetics and technique, cartography builds on the premise that reality (or an im ...
. Like the
stereographic projection In mathematics, a stereographic projection is a perspective projection of the sphere, through a specific point on the sphere (the ''pole'' or ''center of projection''), onto a plane (geometry), plane (the ''projection plane'') perpendicular to ...
and
gnomonic projection A gnomonic map projection is a map projection which displays all great circles as straight lines, resulting in any straight line segment on a gnomonic map showing a geodesic, the shortest route between the segment's two endpoints. This is achie ...
, orthographic projection is a perspective (or azimuthal) projection, in which the
sphere A sphere () is a Geometry, geometrical object that is a solid geometry, three-dimensional analogue to a two-dimensional circle. A sphere is the Locus (mathematics), set of points that are all at the same distance from a given point in three ...
is projected onto a
tangent plane In geometry, the tangent line (or simply tangent) to a plane curve at a given point is the straight line that "just touches" the curve at that point. Leibniz defined it as the line through a pair of infinitely close points on the curve. More ...
or
secant plane A secant plane is a plane containing a nontrivial section of a sphere or an ellipsoid, or such a plane that a sphere is projected onto. Secant planes are similar to tangent planes, which contact the sphere's surface at a point, while secant plane ...
. The ''point of perspective'' for the orthographic projection is at
infinite Infinite may refer to: Mathematics *Infinite set, a set that is not a finite set *Infinity, an abstract concept describing something without any limit Music * Infinite (group), a South Korean boy band *''Infinite'' (EP), debut EP of American m ...
distance. It depicts a
hemisphere Hemisphere refers to: * A half of a sphere As half of the Earth * A hemisphere of Earth ** Northern Hemisphere ** Southern Hemisphere ** Eastern Hemisphere ** Western Hemisphere ** Land and water hemispheres * A half of the (geocentric) celes ...
of the
globe A globe is a spherical model of Earth, of some other celestial body, or of the celestial sphere. Globes serve purposes similar to maps, but unlike maps, they do not distort the surface that they portray except to scale it down. A model globe ...
as it appears from
outer space Outer space, commonly shortened to space, is the expanse that exists beyond Earth and its atmosphere and between celestial bodies. Outer space is not completely empty—it is a near-perfect vacuum containing a low density of particles, pred ...
, where the
horizon The horizon is the apparent line that separates the surface of a celestial body from its sky when viewed from the perspective of an observer on or near the surface of the relevant body. This line divides all viewing directions based on whether i ...
is a
great circle In mathematics, a great circle or orthodrome is the circular intersection of a sphere and a plane passing through the sphere's center point. Any arc of a great circle is a geodesic of the sphere, so that great circles in spherical geomet ...
. The shapes and areas are distorted, particularly near the edges.Snyder, John P. (1993). ''Flattening the Earth: Two Thousand Years of Map Projections'' pp. 16–18. Chicago and London: The University of Chicago Press. . The orthographic projection has been known since antiquity, with its cartographic uses being well documented.
Hipparchus Hipparchus (; el, Ἵππαρχος, ''Hipparkhos'';  BC) was a Greek astronomer, geographer, and mathematician. He is considered the founder of trigonometry, but is most famous for his incidental discovery of the precession of the equi ...
used the projection in the 2nd century BC to determine the places of star-rise and star-set. In about 14 BC, Roman engineer
Marcus Vitruvius Pollio Vitruvius (; c. 80–70 BC – after c. 15 BC) was a Roman architect and engineer during the 1st century BC, known for his multi-volume work entitled ''De architectura''. He originated the idea that all buildings should have three attribute ...
used the projection to construct sundials and to compute sun positions. Vitruvius also seems to have devised the term orthographic (from the Greek ''orthos'' (= “straight”) and graphē (= “drawing”) for the projection. However, the name ''
analemma In astronomy, an analemma (; ) is a diagram showing the position of the Sun in the sky as seen from a fixed location on Earth at the same mean solar time, as that position varies over the course of a year. The diagram will resemble a figure ei ...
'', which also meant a sundial showing latitude and longitude, was the common name until
François d'Aguilon François d'Aguilon (also d'Aguillon or in Latin Franciscus Aguilonius) (4 January 1567 – 20 March 1617) was a Jesuit, mathematician, physicist, and architect from the Spanish Netherlands. D'Aguilon was born in Brussels; his father was a secret ...
of Antwerp promoted its present name in 1613. The earliest surviving maps on the projection appear as woodcut drawings of terrestrial globes of 1509 (anonymous), 1533 and 1551 (Johannes Schöner), and 1524 and 1551 (Apian).


Notes


References


External links


Normale (orthogonale) Axonometrie

Orthographic Projection Video and mathematics
{{Structural geology Euclidean geometry Graphical projections Linear algebra de:Orthogonale Projektion#Orthogonale Projektion