Changeset 3938 for issm/trunk/src/c/objects/Inputs/TriaVertexInput.cpp
- Timestamp:
- 05/25/10 10:31:51 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Inputs/TriaVertexInput.cpp
r3935 r3938 11 11 #include "stdio.h" 12 12 #include <string.h> 13 #include "./InputLocal.h" 13 14 #include "../objects.h" 14 15 #include "../../EnumDefinitions/EnumDefinitions.h" … … 428 429 } 429 430 /*}}}*/ 431 /*FUNCTION TriaVertexInput::PatchSize(void);{{{1*/ 432 int TriaVertexInput::PatchSize(void){ 433 return 3; 434 } 435 /*}}}*/ 436 /*FUNCTION TriaVertexInput::PatchFill(double* patches);{{{1*/ 437 void TriaVertexInput::PatchFill(double* patches,Parameters* parameters){ 438 439 patches[0]=values[0]; 440 patches[1]=values[1]; 441 patches[2]=values[2]; 442 443 /*Now, post-processing: */ 444 ProcessResults(patches,3,this->enum_type,parameters); 445 446 447 } 448 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.