API Documentation > Interfaces > Interface GeomExportFlags
Interface GeomExportFlags

package com.ptc.pfc.pfcModel;

public interface
GeomExportFlags
extends
jxobject


Description
Specifies extend-surface and Bezier options for use when exporting geometric information from a model.
User Guide References:
Method Summary
boolean
Get method for attribute "Bezier"
Specifies how B-splines are exported.If true, exports all B-splines as Bezier surfaces. If false, spline surfaces are exported. (Bezier surfaces are created temporarily to increase order and decrease the number of patches in the resulting spline surface.)
This value overrides theintf_out_as_ibezier option in the Creo Parametric configuration file, if it exists.
boolean
Get method for attribute "ExtendSRF"
Specifies whether or not surfaces are extended.If true, the surfaces are extended. If false, the surfaces are exported as they are, with no extending.
This value overrides theintf3d_out_extend_surface option in the Creo Parametric configuration file, if it exists.
void
SetBezier (boolean value)
Set method for attribute "Bezier"
Specifies how B-splines are exported.If true, exports all B-splines as Bezier surfaces. If false, spline surfaces are exported. (Bezier surfaces are created temporarily to increase order and decrease the number of patches in the resulting spline surface.)
This value overrides theintf_out_as_ibezier option in the Creo Parametric configuration file, if it exists.
void
SetExtendSRF (boolean value)
Set method for attribute "ExtendSRF"
Specifies whether or not surfaces are extended.If true, the surfaces are extended. If false, the surfaces are exported as they are, with no extending.
This value overrides theintf3d_out_extend_surface option in the Creo Parametric configuration file, if it exists.
Method Detail
GetExtendSRF
boolean
GetExtendSRF
()
SetExtendSRF
void
SetExtendSRF
(boolean value)
Specifies whether or not surfaces are extended.
If true, the surfaces are extended.
If false, the surfaces are exported as they are, with no extending.
This value overrides the intf3d_out_extend_surface option in the Creo Parametric configuration file, if it exists.
GetBezier
boolean
GetBezier
()
SetBezier
void
SetBezier
(boolean value)
Specifies how B-splines are exported.
If true, exports all B-splines as Bezier surfaces.
If false, spline surfaces are exported. (Bezier surfaces are created temporarily to increase order and decrease the number of patches in the resulting spline surface.)
This value overrides the intf_out_as_ibezier option in the Creo Parametric configuration file, if it exists.
Was this helpful?