wumpus-basic-0.15.0: Basic objects and system code built on Wumpus-Core.

PortabilityGHC
Stabilityhighly unstable
Maintainerstephen.tetley@gmail.com

Wumpus.Basic.Kernel.Base.WrappedPrimitive

Contents

Description

Two warpped versions of the Primitive type from Wumpus-Core.

Synopsis

Primitives

data HPrim u Source

Graphics objects, even simple ones (line, arrow, dot) might need more than one primitive (path or text label) for their construction. Hence, the primary representation that all the others are built upon must support concatenation of primitives.

Wumpus-Core has a type Picture - made from one or more Primitives - but Pictures include support for affine frames. For drawing many simple graphics (dots, connector lines...) that do not need individual affine transformations this is a penalty. A list of Primitives is therefore more suitable representation, and a Hughes list which supports efficient concatenation is wise.

Instances

Collect primitives (writer monad)

class TraceM m whereSource

Collect elementary graphics as part of a larger drawing.

TraceM works much like a writer monad.

Methods

trace :: MonUnit m ~ u => HPrim u -> m ()Source

Instances