HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
particleField.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the terms set forth in the LICENSE.txt file available at
5 // https://openusd.org/license.
6 //
7 #ifndef USDVOL_GENERATED_PARTICLEFIELD_H
8 #define USDVOL_GENERATED_PARTICLEFIELD_H
9 
10 /// \file usdVol/particleField.h
11 
12 #include "pxr/pxr.h"
13 #include "pxr/usd/usdVol/api.h"
14 #include "pxr/usd/usdGeom/gprim.h"
15 #include "pxr/usd/usd/prim.h"
16 #include "pxr/usd/usd/stage.h"
17 
18 #include "pxr/base/vt/value.h"
19 
20 #include "pxr/base/gf/vec3d.h"
21 #include "pxr/base/gf/vec3f.h"
22 #include "pxr/base/gf/matrix4d.h"
23 
24 #include "pxr/base/tf/token.h"
25 #include "pxr/base/tf/type.h"
26 
28 
29 class SdfAssetPath;
30 
31 // -------------------------------------------------------------------------- //
32 // PARTICLEFIELD //
33 // -------------------------------------------------------------------------- //
34 
35 /// \class UsdVolParticleField
36 ///
37 /// A ParticleField prim is used as a base to describe different types
38 /// of concrete ParticleField implementations, such as, but not limited
39 /// to, 3D Gaussian Splats.
40 ///
41 /// It is a concrete prim type that can have different
42 /// ParticleField related applied schemas applied to it, to
43 /// specialize its definition.
44 ///
45 /// The related ParticleField applied schemas represent the different
46 /// features of a ParticleField, such as positions, orientations,
47 /// scales, kernel (shape and fall-off) and radiance. Any of these
48 /// applied schema that are required to define a valid ParticleField
49 /// also have a base applied schema that they auto apply. This base
50 /// applied schema allows for valiation rules to be written that
51 /// ensure the necessary components are present.
52 ///
53 /// Without at least some of these applied schemas the ParticleField
54 /// is just an empty abstract container, but adding different
55 /// combinations of these applied schemas allows us to describe a
56 /// varying family of types of ParticleFields.
57 ///
59 {
60 public:
61  /// Compile time constant representing what kind of schema this class is.
62  ///
63  /// \sa UsdSchemaKind
65 
66  /// Construct a UsdVolParticleField on UsdPrim \p prim .
67  /// Equivalent to UsdVolParticleField::Get(prim.GetStage(), prim.GetPath())
68  /// for a \em valid \p prim, but will not immediately throw an error for
69  /// an invalid \p prim
70  explicit UsdVolParticleField(const UsdPrim& prim=UsdPrim())
71  : UsdGeomGprim(prim)
72  {
73  }
74 
75  /// Construct a UsdVolParticleField on the prim held by \p schemaObj .
76  /// Should be preferred over UsdVolParticleField(schemaObj.GetPrim()),
77  /// as it preserves SchemaBase state.
78  explicit UsdVolParticleField(const UsdSchemaBase& schemaObj)
79  : UsdGeomGprim(schemaObj)
80  {
81  }
82 
83  /// Destructor.
85  virtual ~UsdVolParticleField();
86 
87  /// Return a vector of names of all pre-declared attributes for this schema
88  /// class and all its ancestor classes. Does not include attributes that
89  /// may be authored by custom/extended methods of the schemas involved.
91  static const TfTokenVector &
92  GetSchemaAttributeNames(bool includeInherited=true);
93 
94  /// Return a UsdVolParticleField holding the prim adhering to this
95  /// schema at \p path on \p stage. If no prim exists at \p path on
96  /// \p stage, or if the prim at that path does not adhere to this schema,
97  /// return an invalid schema object. This is shorthand for the following:
98  ///
99  /// \code
100  /// UsdVolParticleField(stage->GetPrimAtPath(path));
101  /// \endcode
102  ///
103  USDVOL_API
104  static UsdVolParticleField
105  Get(const UsdStagePtr &stage, const SdfPath &path);
106 
107  /// Attempt to ensure a \a UsdPrim adhering to this schema at \p path
108  /// is defined (according to UsdPrim::IsDefined()) on this stage.
109  ///
110  /// If a prim adhering to this schema at \p path is already defined on this
111  /// stage, return that prim. Otherwise author an \a SdfPrimSpec with
112  /// \a specifier == \a SdfSpecifierDef and this schema's prim type name for
113  /// the prim at \p path at the current EditTarget. Author \a SdfPrimSpec s
114  /// with \p specifier == \a SdfSpecifierDef and empty typeName at the
115  /// current EditTarget for any nonexistent, or existing but not \a Defined
116  /// ancestors.
117  ///
118  /// The given \a path must be an absolute prim path that does not contain
119  /// any variant selections.
120  ///
121  /// If it is impossible to author any of the necessary PrimSpecs, (for
122  /// example, in case \a path cannot map to the current UsdEditTarget's
123  /// namespace) issue an error and return an invalid \a UsdPrim.
124  ///
125  /// Note that this method may return a defined prim whose typeName does not
126  /// specify this schema class, in case a stronger typeName opinion overrides
127  /// the opinion at the current EditTarget.
128  ///
129  USDVOL_API
130  static UsdVolParticleField
131  Define(const UsdStagePtr &stage, const SdfPath &path);
132 
133 protected:
134  /// Returns the kind of schema this class belongs to.
135  ///
136  /// \sa UsdSchemaKind
137  USDVOL_API
138  UsdSchemaKind _GetSchemaKind() const override;
139 
140 private:
141  // needs to invoke _GetStaticTfType.
142  friend class UsdSchemaRegistry;
143  USDVOL_API
144  static const TfType &_GetStaticTfType();
145 
146  static bool _IsTypedSchema();
147 
148  // override SchemaBase virtuals.
149  USDVOL_API
150  const TfType &_GetTfType() const override;
151 
152 public:
153  // ===================================================================== //
154  // Feel free to add custom code below this line, it will be preserved by
155  // the code generator.
156  //
157  // Just remember to:
158  // - Close the class declaration with };
159  // - Close the namespace with PXR_NAMESPACE_CLOSE_SCOPE
160  // - Close the include guard with #endif
161  // ===================================================================== //
162  // --(BEGIN CUSTOM CODE)--
163 };
164 
166 
167 #endif
static USDVOL_API UsdVolParticleField Define(const UsdStagePtr &stage, const SdfPath &path)
static const UsdSchemaKind schemaKind
Definition: particleField.h:64
#define PXR_NAMESPACE_OPEN_SCOPE
Definition: pxr.h:73
GLsizei const GLchar *const * path
Definition: glcorearb.h:3341
static USDVOL_API UsdVolParticleField Get(const UsdStagePtr &stage, const SdfPath &path)
virtual USDVOL_API ~UsdVolParticleField()
Destructor.
Represents a concrete typed schema.
static USDVOL_API const TfTokenVector & GetSchemaAttributeNames(bool includeInherited=true)
USDVOL_API UsdSchemaKind _GetSchemaKind() const override
Definition: prim.h:116
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:440
Definition: path.h:280
UsdSchemaKind
Definition: common.h:112
UsdVolParticleField(const UsdSchemaBase &schemaObj)
Definition: particleField.h:78
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:74
Definition: type.h:47
UsdVolParticleField(const UsdPrim &prim=UsdPrim())
Definition: particleField.h:70
#define USDVOL_API
Definition: api.h:23