Returns an array of track ids with a bool
value indicating if it's visible to the specified object.
[Visual Basic .NET] |
---|
Public Function ComputeTracks( _
ByVal Mode As AgEMtoVisibilityMode, _
ByRef TrackIds As System.Array, _
ByVal Time As System.Object _
) As System.Array
|
[C#] |
---|
public System.Array ComputeTracks(
|
[Managed C++] |
---|
public: System::Array ComputeTracks(
|
[Java] |
---|
public Object[] computeTracks(
|
[Unmanaged C++] |
---|
public: HRESULT ComputeTracks(
|
- Mode
-
Member Value Description eVisibilityModeEach 2 Returns the Track_id and 1 or 0 for every track; where 1 indicates the track is visible and 0 indicates it is not. eVisibilityModeEachVisible 3 Returns the Track_id and 1 only for those tracks having visibility. If all objects are invisible then the message 'No Visibility' is returned. eVisibilityModeEachNotVisible 4 Returns the Track_id and 0 for those tracks not having visibility. If all objects are visible then the message 'Complete Visibility' is returned. - TrackIds
- Time
Which tracks of the
specified subset of tracks are visible from the other STK Object at
the specified time?
[C#] | Copy Code | |
---|---|---|
|
Which tracks of the
specified subset of tracks are visible from the other STK Object at
the specified time?
[Visual Basic .NET] | Copy Code | |
---|---|---|
|