Main Content

Arduino 3D Axonometric Projection

3D axonometric projection on 8-bit and 32-bit microcontroller and TFT.

3D PROJECTION
3D projection is any method of mapping three-dimensional points to a two-dimensional plane. As most current methods for displaying graphical data are based on planar two-dimensional media, the use of this type of projection is widespread, especially in computer graphics and engineering.

3D axonometric projection on Arduino Micro 8-bit and TFT touch shield change of projection is made using the touch screen.

AXONOMETRIC PROJECTION
Axonometric projection is a type of parallel projection used for creating a pictorial drawing of an object, where the object is rotated along one or more of its axes relative to the plane of projection.

There are three main types of axonometric projection: isometric, dimetric, and trimetric projection.

Axonometric” means “to measure along axes”. Axonometric projection shows an image of an object as viewed from a skew direction in order to reveal more than one side in the same picture. Whereas the term orthographic is sometimes reserved specifically for depictions of objects where the axis or plane of the object is parallel with the projection plane, in axonometric projection the plane or axis of the object is always drawn not parallel to the projection plane.

With axonometric projections the scale of distant features is the same as for near features, so such pictures will look distorted, as it is not how our eyes or photography work. This distortion is especially evident if the object to view is mostly composed of rectangular features. Despite this limitation, axonometric projection can be useful for purposes of illustration.

WINDOW-TO-VIEWPORT COORDINATE TRANSFORMATION.

A world-coordinate area selected for display is called a window. An area on a display device to which a window is mapped is called a viewport. The window defines what is to be viewed; the viewport defines where it is to be displayed.”

Link to article