pCon.planner Plugin SDK  Version 8.8.1
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Events
Public Attributes | List of all members
X3g::Plugin::ExportFbxParams Struct Reference

Fbx export parameters. More...

Public Attributes

AcisQuality AcisQuality
 ACIS vectorization quality setting. More...
 
double DefaultEdgeSmoothness
 Default edge smoothness. More...
 
double DefaultNormalSmoothness
 Default normal smoothness. More...
 
ReadOnlyCollection< String^ >^ Entities
 List of model space entities which should be exported. More...
 
int Format
 Format id. More...
 
bool SingleSided
 Single or double sided faces. More...
 
bool EmbedMedia
 Embedded media. More...
 
bool WithLights
 Export of lights. More...
 
bool FlipMirroredFaces
 Flip faces for entities with mirror transform. More...
 

Detailed Description

Fbx export parameters.

An example initialisation would look like:

var exportParams = new ExportFbxParams {
    AcisQuality = AcisQuality.Medium,
    DefaultEdgeSmoothness = 19.8,
    DefaultNormalSmoothness = 19.8,
    Entities = null,
    Format = 0,
    SingleSided = true,
    EmbedMedia = true,
    WithLights = false,
    FlipMirroredFaces = true
};

Member Data Documentation

AcisQuality X3g::Plugin::ExportFbxParams::AcisQuality

ACIS vectorization quality setting.

double X3g::Plugin::ExportFbxParams::DefaultEdgeSmoothness

Default edge smoothness.

double X3g::Plugin::ExportFbxParams::DefaultNormalSmoothness

Default normal smoothness.

bool X3g::Plugin::ExportFbxParams::EmbedMedia

Embedded media.

ReadOnlyCollection<String^> ^ X3g::Plugin::ExportFbxParams::Entities

List of model space entities which should be exported.

If Entities is not set, then the whole planning is exported.

bool X3g::Plugin::ExportFbxParams::FlipMirroredFaces

Flip faces for entities with mirror transform.

int X3g::Plugin::ExportFbxParams::Format

Format id.

Use -1 to autodetect, otherwise 0.

bool X3g::Plugin::ExportFbxParams::SingleSided

Single or double sided faces.

bool X3g::Plugin::ExportFbxParams::WithLights

Export of lights.