Initializes a polyline primitive with the
specified interpolator and setHint.
[Visual Basic .NET] |
---|
Public Function InitializeWithInterpolatorAndSetHint( _
ByVal Interpolator As IAgStkGraphicsPositionInterpolator, _
ByVal SetHint As AgEStkGraphicsSetHint _
) As IAgStkGraphicsPolylinePrimitive
|
[C#] |
---|
public IAgStkGraphicsPolylinePrimitive InitializeWithInterpolatorAndSetHint(
|
[Managed C++] |
---|
public: IAgStkGraphicsPolylinePrimitive^ InitializeWithInterpolatorAndSetHint(
|
[Java] |
---|
public IAgStkGraphicsPolylinePrimitive initializeWithInterpolatorAndSetHint(
|
[Unmanaged C++] |
---|
public: HRESULT InitializeWithInterpolatorAndSetHint(
|
- Interpolator
- The Position
Interpolator applied to positions passed to
Set
methods. - SetHint
-
Member Value Description eStkGraphicsSetHintInfrequent 0 Rendering is optimized for static geometry. The primitive's vertices are not going to be updated with Set() or SetPartial() calls. Calls to SetPartial() will fail. Calls to Set() are allowed but may not be as efficient as SetHintFrequent. eStkGraphicsSetHintPartial 1 Rendering is optimized for dynamic geometry. The primitive's vertices are expected to be updated with SetPartial() - some or all of the vertices will change but the number of vertices will not. eStkGraphicsSetHintFrequent 2 Rendering is optimized for streaming geometry. The primitive's vertices are expected to be updated with Set() - all the vertices will change and/or the number of vertices will change. Calls to SetPartial() will fail.