HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
coneMeshGenerator.h
Go to the documentation of this file.
1 //
2 // Copyright 2022 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef PXR_IMAGING_GEOM_UTIL_CONE_MESH_GENERATOR_H
25 #define PXR_IMAGING_GEOM_UTIL_CONE_MESH_GENERATOR_H
26 
29 
30 #include "pxr/pxr.h"
31 
33 
34 class GfMatrix4d;
35 class PxOsdMeshTopology;
36 
37 /// This class provides an implementation for generating topology and point
38 /// positions on a cone of a given radius and height. The cone is made up of
39 /// circular cross-sections in the XY plane and is centered at the origin. Each
40 /// cross-section has numRadial segments. The height is aligned with the Z
41 /// axis, with the base of the object at Z = -h/2 and apex at Z = h/2.
42 ///
43 /// An optional transform may be provided to GeneratePoints to orient the
44 /// cone as necessary (e.g., whose height is along the Y axis) .
45 ///
46 /// An additional overload of GeneratePoints is provided to specify the sweep
47 /// angle for the cone about the +Z axis. When the sweep is less than 360
48 /// degrees, the generated geometry is not closed.
49 ///
50 /// Usage:
51 /// \code{.cpp}
52 ///
53 /// const size_t numRadial = 8;
54 /// const size_t numPoints =
55 /// GeomUtilConeMeshGenerator::ComputeNumPoints(numRadial);
56 /// const float radius = 1, height = 2;
57 ///
58 /// MyPointContainer<GfVec3f> points(numPoints);
59 ///
60 /// GeomUtilConeMeshGenerator::GeneratePoints(
61 /// points.begin(), numRadial, radius, height);
62 ///
63 /// \endcode
64 ///
67 {
68 public:
69  static constexpr size_t minNumRadial = 3;
70 
72  static size_t ComputeNumPoints(
73  const size_t numRadial,
74  const bool closedSweep = true);
75 
78  const size_t numRadial,
79  const bool closedSweep = true);
80 
81  template<typename PointIterType,
82  typename ScalarType,
83  typename Enabled =
85  static void GeneratePoints(
86  PointIterType iter,
87  const size_t numRadial,
88  const ScalarType radius,
89  const ScalarType height,
90  const GfMatrix4d* framePtr = nullptr)
91  {
92  constexpr ScalarType sweep = 360;
93  GeneratePoints(iter, numRadial, radius, height, sweep, framePtr);
94  }
95 
96  template<typename PointIterType,
97  typename ScalarType,
98  typename Enabled =
100  static void GeneratePoints(
101  PointIterType iter,
102  const size_t numRadial,
103  const ScalarType radius,
104  const ScalarType height,
105  const ScalarType sweepDegrees,
106  const GfMatrix4d* framePtr = nullptr)
107  {
108  using PointType =
110 
111  _GeneratePointsImpl(numRadial, radius, height, sweepDegrees,
112  framePtr ? _PointWriter<PointType>(iter, framePtr)
113  : _PointWriter<PointType>(iter));
114  }
115 
117 
118 private:
119 
120  template<typename PointType>
121  static void _GeneratePointsImpl(
122  const size_t numRadial,
123  const typename PointType::ScalarType radius,
124  const typename PointType::ScalarType height,
125  const typename PointType::ScalarType sweepDegrees,
126  const _PointWriter<PointType>& ptWriter);
127 };
128 
130 
131 #endif // PXR_IMAGING_GEOM_UTIL_CONE_MESH_GENERATOR_H
static void GeneratePoints(PointIterType iter, const size_t numRadial, const ScalarType radius, const ScalarType height, const ScalarType sweepDegrees, const GfMatrix4d *framePtr=nullptr)
uint64 value_type
Definition: GA_PrimCompat.h:29
static constexpr size_t minNumRadial
GLint GLsizei GLsizei height
Definition: glcorearb.h:103
#define GEOMUTIL_API
Definition: api.h:40
static void GeneratePoints(PointIterType iter, const size_t numRadial, const ScalarType radius, const ScalarType height, const GfMatrix4d *framePtr=nullptr)
static void GeneratePoints(PointIterType iter,...)
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
static GEOMUTIL_API size_t ComputeNumPoints(const size_t numRadial, const bool closedSweep=true)
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
static GEOMUTIL_API PxOsdMeshTopology GenerateTopology(const size_t numRadial, const bool closedSweep=true)
type
Definition: core.h:1059