SoLDMWriterInitialize Method (String, SbBox3f, SbVec3i32, SoDataSetDataTypes, Int32, String) |
Note: This API is now obsolete.
Initializes the writer to build a volume filename with the specified dimensions, size and data type.
Namespace: OIV.LDM.ConvertersAssembly: OIV.LDM (in OIV.LDM.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax[ObsoleteAttribute("See documentation for more details")]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public int Initialize(
string filename,
SbBox3f size,
SbVec3i32 dimension,
SoDataSetDataTypes dataType,
int argc,
string[] argv
)
<ObsoleteAttribute("See documentation for more details")>
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Function Initialize (
filename As String,
size As SbBox3f,
dimension As SbVec3i32,
dataType As SoDataSetDataTypes,
argc As Integer,
argv As String()
) As Integer
public:
[ObsoleteAttribute(L"See documentation for more details")]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
int Initialize(
String^ filename,
SbBox3f size,
SbVec3i32 dimension,
SoDataSetDataTypes dataType,
int argc,
array<String^>^ argv
)
[<ObsoleteAttribute("See documentation for more details")>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member Initialize :
filename : string *
size : SbBox3f *
dimension : SbVec3i32 *
dataType : SoDataSetDataTypes *
argc : int *
argv : string[] -> int
Parameters
- filename
- Type: SystemString
- size
- Type: OIV.InventorSbBox3f
- dimension
- Type: OIV.InventorSbVec3i32
- dataType
- Type: OIV.LDM.NodesSoDataSetDataTypes
- argc
- Type: SystemInt32
- argv
- Type: SystemString
Return Value
Type:
Int32
RemarksOther parameters (e.g. tile size) and converter options (e.g. "-q" to suppress output) can be specified using argc and argv . See SoConverter.convert for a list of command line arguments. Result code is defined by the enum SoConverter.ConverterError.Obsoletesince Open Inventor 9000
Use equivalent method that take SoConverterParameters as parameter.
See Also