39class EXPCL_PANDA_EGG EggVertex :
public EggObject,
public EggAttributes {
41 typedef pset<EggGroup *> GroupRef;
47 typedef uv_iterator const_uv_iterator;
48 typedef UVMap::size_type uv_size_type;
51 typedef aux_iterator const_aux_iterator;
52 typedef AuxMap::size_type aux_size_type;
57 EggVertex(
const EggVertex ©);
58 EggVertex &operator = (
const EggVertex ©);
61 INLINE EggVertexPool *
get_pool()
const;
67 INLINE
void set_pos(
double pos);
68 INLINE
void set_pos(
const LPoint2d &pos);
69 INLINE
void set_pos(
const LPoint3d &pos);
70 INLINE
void set_pos(
const LPoint4d &pos);
71 INLINE
void set_pos4(
const LPoint4d &pos);
84 INLINE
bool has_uv()
const;
85 INLINE LTexCoordd
get_uv()
const;
86 INLINE
void set_uv(
const LTexCoordd &texCoord);
88 bool has_uv(
const std::string &name)
const;
89 bool has_uvw(
const std::string &name)
const;
90 LTexCoordd
get_uv(
const std::string &name)
const;
91 const LTexCoord3d &
get_uvw(
const std::string &name)
const;
92 void set_uv(
const std::string &name,
const LTexCoordd &texCoord);
93 void set_uvw(
const std::string &name,
const LTexCoord3d &texCoord);
97 void clear_uv(
const std::string &name);
101 bool has_aux(
const std::string &name)
const;
102 const LVecBase4d &
get_aux(
const std::string &name)
const;
103 void set_aux(
const std::string &name,
const LVecBase4d &aux);
109 static PT(EggVertex) make_average(
const EggVertex *first,
110 const EggVertex *second);
113 INLINE const_uv_iterator
uv_begin()
const;
114 INLINE const_uv_iterator
uv_end()
const;
115 INLINE uv_size_type
uv_size()
const;
117 INLINE const_aux_iterator
aux_begin()
const;
118 INLINE const_aux_iterator
aux_end()
const;
119 INLINE aux_size_type
aux_size()
const;
129 void write(std::ostream &out,
int indent_level)
const;
140 GroupRef::const_iterator
gref_end()
const;
143 bool has_gref(
const EggGroup *group)
const;
149 PrimitiveRef::const_iterator
pref_begin()
const;
150 PrimitiveRef::const_iterator
pref_end()
const;
151 PrimitiveRef::size_type
pref_size()
const;
153 int has_pref(
const EggPrimitive *prim)
const;
156 void test_gref_integrity()
const;
157 void test_pref_integrity()
const;
159 void test_gref_integrity()
const { }
160 void test_pref_integrity()
const { }
163 void output(std::ostream &out)
const;
165 EggMorphVertexList _dxyzs;
168 EggVertexPool *_pool;
169 bool _forward_reference;
171 int _external_index, _external_index2;
173 short _num_dimensions;
184 static void init_type() {
185 EggObject::init_type();
186 EggAttributes::init_type();
188 EggObject::get_class_type(),
189 EggAttributes::get_class_type());
192 return get_class_type();
194 virtual TypeHandle force_init_type() {init_type();
return get_class_type();}
199 friend class EggVertexPool;
200 friend class EggGroup;
201 friend class EggPrimitive;
204INLINE std::ostream &operator << (std::ostream &out,
const EggVertex &vert) {
void transform(const LMatrix4d &mat)
Applies the indicated transformation matrix to the attributes.
int compare_to(const EggAttributes &other) const
An ordering operator to compare two vertices for sorting order.
void write(std::ostream &out, int indent_level) const
Writes the attributes to the indicated output stream in Egg format.
bool sorts_less_than(const EggAttributes &other) const
An ordering operator to compare two vertices for sorting order.
The main glue of the egg hierarchy, this corresponds to the <Group>, <Instance>, and <Joint> type nod...
A base class for any of a number of kinds of geometry primitives: polygons, point lights,...
The set of named auxiliary data that may or may not be assigned to a vertex.
A collection of vertices.
The set of UV's that may or may not be assigned to a vertex.
Any one-, two-, three-, or four-component vertex, possibly with attributes such as a normal.
const EggVertexUV * get_uv_obj(const std::string &name) const
Returns the named EggVertexUV object, which defines both the UV coordinate pair for this name and the...
void set_uv_obj(EggVertexUV *vertex_uv)
Sets the indicated EggVertexUV on the vertex.
void set_pos4(const LPoint4d &pos)
This special flavor of set_pos() sets the vertex as a four-component value, but does not change the s...
const EggVertexAux * get_aux_obj(const std::string &name) const
Returns the named EggVertexAux object, which defines the auxiliary data for this name.
bool has_uvw(const std::string &name) const
Returns true if the vertex has the named UV coordinate triple, and the named UV coordinate triple is ...
bool has_gref(const EggGroup *group) const
Returns true if the indicated group references this vertex, false otherwise.
bool has_uv() const
Returns true if the vertex has an unnamed UV coordinate pair, false otherwise.
void clear_grefs()
Removes all group references from the vertex, so that it is not assigned to any group.
aux_size_type aux_size() const
Returns the number of auxiliary datas on the vertex.
int get_index() const
Returns the index number of the vertex within its pool.
int has_pref(const EggPrimitive *prim) const
Returns the number of times the vertex appears in the indicated primitive, or 0 if it does not appear...
EggVertexUV * modify_uv_obj(const std::string &name)
Returns a modifiable pointer to the named EggVertexUV object, which defines both the UV coordinate pa...
bool has_aux() const
Returns true if the vertex has any auxiliary data, false otherwise.
void set_aux(const std::string &name, const LVecBase4d &aux)
Sets the indicated auxiliary data quadruple on the vertex.
PrimitiveRef::const_iterator pref_begin() const
Returns an iterator that can, in conjunction with pref_end(), be used to traverse the entire set of p...
int get_external_index() const
Returns the number set by set_external_index().
uv_size_type uv_size() const
Returns the number of named UV's on the vertex.
EggVertexPool * get_pool() const
Returns the vertex pool this vertex belongs in.
void set_external_index(int external_index)
Sets a special index number that is associated with the EggVertex (but is not written to the egg file...
bool is_forward_reference() const
Returns true if the vertex is a forward reference to some vertex that hasn't been defined yet.
LTexCoordd get_uv() const
Returns the unnamed UV coordinate pair on the vertex.
PrimitiveRef::const_iterator pref_end() const
Returns an iterator that can, in conjunction with pref_begin(), be used to traverse the entire set of...
const LTexCoord3d & get_uvw(const std::string &name) const
Returns the named UV coordinate triple on the vertex.
GroupRef::const_iterator gref_end() const
Returns an iterator that can, in conjunction with gref_begin(), be used to traverse the entire set of...
void set_external_index2(int external_index2)
Similar to set_external_index(), but this is a different number which may be used for a different pur...
void set_pos(double pos)
Sets the vertex position.
GroupRef::size_type gref_size() const
Returns the number of elements between gref_begin() and gref_end().
const_aux_iterator aux_begin() const
Returns an iterator that allows walking through the complete set of auxiliary data on the vertex.
int get_external_index2() const
Returns the number set by set_external_index2().
void set_uvw(const std::string &name, const LTexCoord3d &texCoord)
Sets the indicated UV coordinate triple on the vertex.
void clear_uv()
Removes all UV coordinate pairs from the vertex.
const_uv_iterator uv_end() const
Returns an iterator that allows walking through the complete set of named UV's on the vertex.
PrimitiveRef::size_type pref_size() const
Returns the number of elements between pref_begin() and pref_end().
void copy_grefs_from(const EggVertex &other)
Copies all the group references from the other vertex onto this one.
int get_num_local_coord() const
Returns the number of primitives that own this vertex whose vertices are interpreted to be in a local...
LPoint2d get_pos2() const
Only valid if get_num_dimensions() returns 2.
const_uv_iterator uv_begin() const
Returns an iterator that allows walking through the complete set of named UV's on the vertex.
EggVertexAux * modify_aux_obj(const std::string &name)
Returns a modifiable pointer to the named EggVertexAux object, which defines the auxiliary data for t...
void clear_aux()
Removes all auxiliary data from the vertex.
int get_num_dimensions() const
Returns the number of dimensions the vertex uses.
GroupRef::const_iterator gref_begin() const
Returns an iterator that can, in conjunction with gref_end(), be used to traverse the entire set of g...
double get_pos1() const
Only valid if get_num_dimensions() returns 1.
LVertexd get_pos3() const
Valid if get_num_dimensions() returns 3 or 4.
void set_uv(const LTexCoordd &texCoord)
Replaces the unnamed UV coordinate pair on the vertex with the indicated value.
LPoint4d get_pos4() const
This is always valid, regardless of the value of get_num_dimensions.
const_aux_iterator aux_end() const
Returns an iterator that allows walking through the complete set of auxiliary data on the vertex.
const LVecBase4d & get_aux(const std::string &name) const
Returns the named auxiliary data quadruple on the vertex.
int get_num_global_coord() const
Returns the number of primitives that own this vertex whose vertices are interpreted in the global co...
void set_aux_obj(EggVertexAux *vertex_aux)
Sets the indicated EggVertexAux on the vertex.
TypeHandle is the identifier used to differentiate C++ class types.
An STL function object for sorting vertices into order by properties.
This is our own Panda specialization on the default STL multiset.
This is an iterator adaptor that converts any iterator that returns a pair (e.g.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...