ply-loader-0.1.1.0: PLY file loader.

Safe HaskellNone

PLY.Conf

Description

Parse Stanford 3D Scanning Repository .conf files that place individual PLY models into a consistent coordinate frame.

Synopsis

Documentation

parseConf :: ByteString -> Either String ConfSource

Parse a Stanford .conf file.

type Transformation a = (V3 a, Quaternion a)Source

A 3D transformation represented as a translation vector and a rotation.

data Conf Source

A .conf file includes a base transformation matrix, and a list of meshes identified by their file name and a Transformation to place geometry in a consistent coordinate frame.

Instances