00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 INLINE void ColladaPrimitive::
00021 add_input(ColladaInput *input) {
00022 if (input->get_offset() >= _stride) {
00023 _stride = input->get_offset() + 1;
00024 }
00025 _inputs.push_back(input);
00026 }
00027
00028
00029
00030
00031
00032 INLINE PT(Geom) ColladaPrimitive::
00033 get_geom() const {
00034 return _geom;
00035 }
00036
00037
00038
00039
00040
00041
00042 INLINE const string &ColladaPrimitive::
00043 get_material() const {
00044 return _material;
00045 }