MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / GetLiveCollisionBoundsInfo

Method GetLiveCollisionBoundsInfo

headers/openvr_api.cs:3008–3015  ·  view source on GitHub ↗
(out HmdQuad_t [] pQuadsBuffer)

Source from the content-addressed store, hash-verified

3006 return result;
3007 }
3008 public bool GetLiveCollisionBoundsInfo(out HmdQuad_t [] pQuadsBuffer)
3009 {
3010 uint punQuadsCount = 0;
3011 bool result = FnTable.GetLiveCollisionBoundsInfo(null,ref punQuadsCount);
3012 pQuadsBuffer= new HmdQuad_t[punQuadsCount];
3013 result = FnTable.GetLiveCollisionBoundsInfo(pQuadsBuffer,ref punQuadsCount);
3014 return result;
3015 }
3016 public bool GetWorkingSeatedZeroPoseToRawTrackingPose(ref HmdMatrix34_t pmatSeatedZeroPoseToRawTrackingPose)
3017 {
3018 bool result = FnTable.GetWorkingSeatedZeroPoseToRawTrackingPose(ref pmatSeatedZeroPoseToRawTrackingPose);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected