Changeset 3819
- Timestamp:
- 05/18/10 13:55:06 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r3818 r3819 208 208 penta->matice=(Matice*)penta->hmatice.delivers(); 209 209 penta->matpar=(Matpar*)penta->hmatpar.delivers(); 210 penta->neighbors=(Penta* )penta->hneighbors.deliverp();210 penta->neighbors=(Penta**)penta->hneighbors.deliverp(); 211 211 212 212 return penta; … … 229 229 this->matice=(Matice*)this->hmatice.delivers(); 230 230 this->matpar=(Matpar*)this->hmatpar.delivers(); 231 this->neighbors=(Penta* )this->hneighbors.deliverp();231 this->neighbors=(Penta**)this->hneighbors.deliverp(); 232 232 233 233 /*point parameters to real dataset: */ -
issm/trunk/src/c/objects/Elements/Penta.h
r3817 r3819 32 32 Matice *matice; // 1 material ice 33 33 Matpar *matpar; // 1 material parameter 34 Penta 34 Penta **neighbors; // 2 neighbors: first one under, second one above 35 35 36 36 Parameters *parameters; //pointer to solution parameters
Note:
See TracChangeset
for help on using the changeset viewer.