diagrams-lib-1.3.1.1: Embedded domain-specific language for declarative graphics

Copyright(c) 2011 diagrams-lib team (see LICENSE)
LicenseBSD-style (see LICENSE)
Maintainerdiagrams-discuss@googlegroups.com
Safe HaskellNone
LanguageHaskell2010

Diagrams.ThreeD.Shapes

Description

Various three-dimensional shapes.

Synopsis

Documentation

sphere :: (Typeable n, OrderedField n, Renderable (Ellipsoid n) b) => QDiagram b V3 n Any Source

A sphere of radius 1 with its center at the origin.

data Box n Source

Constructors

Box (Transformation V3 n) 

Instances

cube :: (Typeable n, OrderedField n, Renderable (Box n) b) => QDiagram b V3 n Any Source

A cube with side length 1, in the positive octant, with one vertex at the origin.

data Frustum n Source

Constructors

Frustum n n (Transformation V3 n) 

frustum :: (TypeableFloat n, Renderable (Frustum n) b) => n -> n -> QDiagram b V3 n Any Source

A frustum of a right circular cone. It has height 1 oriented along the positive z axis, and radii r0 and r1 at Z=0 and Z=1. cone and cylinder are special cases.

cone :: (TypeableFloat n, Renderable (Frustum n) b) => QDiagram b V3 n Any Source

A cone with its base centered on the origin, with radius 1 at the base, height 1, and it's apex on the positive Z axis.

cylinder :: (TypeableFloat n, Renderable (Frustum n) b) => QDiagram b V3 n Any Source

A circular cylinder of radius 1 with one end cap centered on the origin, and extending to Z=1.