Click or drag to resize
SbViewportRegionDefault Field
Provide a default viewport region equivalent to
new SbViewportRegion(100,100,1)
Remarks
Note to developper who comes from C++. As .NET framework does not allow to define a parameterless constructor for struct, use this field to keep the same behavior. When you write
SbViewportRegion viewport = new SbViewportRegion()
> all internal fields are zeroed. Writing
SbViewportRegion viewport = SbViewportRegion.Default
ensures you to have an equivalent object.

Namespace: OIV.Inventor
Assembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2024.1.1.Release.7989217834dd2b99155f267b6c8c70f9feacdedd
Syntax
public static readonly SbViewportRegion Default

Field Value

Type: SbViewportRegion
See Also