TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

class ModelPostProcessor in Tinman.AddOns.Models

abstract class ModelPostProcessor implements IModelPostProcessor
  base of PlantProcessor

Configuration

Config

The configurator object for this type.

public static property Config { get }
type IConfigurator<IModelPostProcessor>
value [not-null] The configurator object.

ToConfig

Returns the configuration value that describes this object.

public abstract method ToConfig ()
type ConfigValue
returns [not-null] The configuration value.
implements IConfigurable.ToConfig

Remarks:

All configurable objects need to implement this interface. For simple types, it is preferable to delegate to ToValue.

The returned value may be of type Invalid, which means that this object in its current state cannot be described with the configuration API.

Before returning the resulting configuration value, Cache must be called on it, passing this IConfigurable object as parameter.

Public / Methods

PostProcess

Performs post-processing on the vertices of the given model geometry.

public abstract method PostProcess (VertexArrays vertices)
type bool
params vertices [not-null] The vertices to post-process.
returns true if some vertices have been post-processed,
false if no post-processing has been performed.
implements IModelPostProcessor.PostProcess