0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / Aspect / Aspect_XRSession.cxx
1 // Copyright (c) 2020 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #include <Aspect_XRSession.hxx>
15
16 IMPLEMENT_STANDARD_RTTIEXT(Aspect_XRSession,   Standard_Transient)
17 IMPLEMENT_STANDARD_RTTIEXT(Aspect_XRAction,    Standard_Transient)
18 IMPLEMENT_STANDARD_RTTIEXT(Aspect_XRActionSet, Standard_Transient)
19
20 // =======================================================================
21 // function : Aspect_XRSession
22 // purpose  :
23 // =======================================================================
24 Aspect_XRSession::Aspect_XRSession()
25 : myTrackOrigin (TrackingUniverseOrigin_Standing),
26   myTrackedPoses (0, 0),
27   myUnitFactor (1.0),
28   myAspect (1.0),
29   myFieldOfView (90.0),
30   myIod (0.0),
31   myDispFreq (0.0f)
32 {
33   for (Standard_Integer aRoleIter = 0; aRoleIter < Aspect_XRTrackedDeviceRole_NB; ++aRoleIter)
34   {
35     myRoleActions[aRoleIter].Resize (0, Aspect_XRGenericAction_NB - 1, false);
36   }
37 }
38
39 // =======================================================================
40 // function : AbortHapticVibrationAction
41 // purpose  :
42 // =======================================================================
43 void Aspect_XRSession::AbortHapticVibrationAction (const Handle(Aspect_XRAction)& theAction)
44 {
45   triggerHapticVibrationAction (theAction, Aspect_XRHapticActionData());
46 }
47
48 // =======================================================================
49 // function : TriggerHapticVibrationAction
50 // purpose  :
51 // =======================================================================
52 void Aspect_XRSession::TriggerHapticVibrationAction (const Handle(Aspect_XRAction)& theAction,
53                                                      const Aspect_XRHapticActionData& theParams)
54 {
55   if (!theParams.IsValid())
56   {
57     throw Standard_ProgramError("Aspect_OpenVRSession::TriggerHapticVibrationAction() called for wrong action");
58   }
59   triggerHapticVibrationAction (theAction, theParams);
60 }