Changeset 12365 for issm/trunk-jpl/src/c/objects/Patch.cpp
- Timestamp:
- 06/04/12 16:40:38 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Patch.cpp
r12102 r12365 3 3 */ 4 4 5 /*Include files: {{{ 1*/5 /*Include files: {{{*/ 6 6 #ifdef HAVE_CONFIG_H 7 7 #include <config.h> … … 22 22 23 23 /*Object constructors and destructors:*/ 24 /*FUNCTION Patch::Patch() default constructor {{{ 1*/24 /*FUNCTION Patch::Patch() default constructor {{{*/ 25 25 Patch::Patch(){ 26 26 this->numrows=0; … … 31 31 } 32 32 /*}}}*/ 33 /*FUNCTION Patch::Patch(int numrows, int maxvertices, int maxnodes){{{ 1*/33 /*FUNCTION Patch::Patch(int numrows, int maxvertices, int maxnodes){{{*/ 34 34 Patch::Patch(int in_numrows, int in_maxvertices, int in_maxnodes){ 35 35 … … 62 62 } 63 63 /*}}}*/ 64 /*FUNCTION Patch::~Patch(){{{ 1*/64 /*FUNCTION Patch::~Patch(){{{*/ 65 65 Patch::~Patch(){ 66 66 xfree((void**)&values); … … 69 69 70 70 /*Object methods*/ 71 /*FUNCTION Patch::fillelementinfo{{{ 1*/71 /*FUNCTION Patch::fillelementinfo{{{*/ 72 72 void Patch::fillelementinfo(int count, int element_id, int* vertices_ids, int num_vertices){ 73 73 … … 88 88 } 89 89 /*}}}*/ 90 /*FUNCTION Patch::fillresultinfo{{{ 1*/90 /*FUNCTION Patch::fillresultinfo{{{*/ 91 91 void Patch::fillresultinfo(int count,int enum_type,int step, double time, int interpolation, double* nodal_values, int num_nodes){ 92 92 … … 110 110 } 111 111 /*}}}*/ 112 /*FUNCTION Patch::Gather{{{ 1*/112 /*FUNCTION Patch::Gather{{{*/ 113 113 void Patch::Gather(void){ 114 114
Note:
See TracChangeset
for help on using the changeset viewer.