C# Class Trigrad.DataTypes.TrigradDecompressed

The results of a TrigradDecompression, containing both the output and debug bitmaps.
Exibir arquivo Open project: ruarai/Trigrad Class Usage Examples

Public Properties

Property Type Description
DebugOutput PixelMap
Output PixelMap

Public Methods

Method Description
TrigradDecompressed ( int width, int height ) : System.Collections.Generic

Constructor for a TrigradDecompressed object, defining the width and height of output bitmaps.

Method Details

TrigradDecompressed() public method

Constructor for a TrigradDecompressed object, defining the width and height of output bitmaps.
public TrigradDecompressed ( int width, int height ) : System.Collections.Generic
width int
height int
return System.Collections.Generic

Property Details

DebugOutput public_oe property

The debug output bitmap, showing calculated barycentric coordinates.
public PixelMap DebugOutput
return PixelMap

Output public_oe property

The decompressed output bitmap.
public PixelMap Output
return PixelMap