Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-15 09:17:19

0001 // Created on: 2016-10-25
0002 // Created by: Irina KRYLOVA
0003 // Copyright (c) 2016 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef _StepVisual_CameraModelD3MultiClipping_HeaderFile
0017 #define _StepVisual_CameraModelD3MultiClipping_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021 
0022 #include <StepVisual_CameraModelD3.hxx>
0023 #include <StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx>
0024 #include <NCollection_Array1.hxx>
0025 #include <NCollection_HArray1.hxx>
0026 class StepGeom_Axis2Placement3d;
0027 class StepVisual_ViewVolume;
0028 class TCollection_HAsciiString;
0029 
0030 class StepVisual_CameraModelD3MultiClipping : public StepVisual_CameraModelD3
0031 {
0032 public:
0033   //! Returns a CameraModelD3MultiClipping
0034   Standard_EXPORT StepVisual_CameraModelD3MultiClipping();
0035 
0036   Standard_EXPORT void Init(
0037     const occ::handle<TCollection_HAsciiString>&  theName,
0038     const occ::handle<StepGeom_Axis2Placement3d>& theViewReferenceSystem,
0039     const occ::handle<StepVisual_ViewVolume>&     thePerspectiveOfVolume,
0040     const occ::handle<NCollection_HArray1<StepVisual_CameraModelD3MultiClippingInterectionSelect>>&
0041       theShapeClipping);
0042 
0043   void SetShapeClipping(
0044     const occ::handle<NCollection_HArray1<StepVisual_CameraModelD3MultiClippingInterectionSelect>>&
0045       theShapeClipping)
0046   {
0047     myShapeClipping = theShapeClipping;
0048   }
0049 
0050   const occ::handle<NCollection_HArray1<StepVisual_CameraModelD3MultiClippingInterectionSelect>>
0051     ShapeClipping()
0052   {
0053     return myShapeClipping;
0054   }
0055   DEFINE_STANDARD_RTTIEXT(StepVisual_CameraModelD3MultiClipping, StepVisual_CameraModelD3)
0056 
0057 private:
0058   occ::handle<NCollection_HArray1<StepVisual_CameraModelD3MultiClippingInterectionSelect>>
0059     myShapeClipping;
0060 };
0061 #endif // _StepVisual_CameraModelD3MultiClipping_HeaderFile