Ignore:
Timestamp:
05/25/10 10:31:51 (15 years ago)
Author:
Eric.Larour
Message:

New results API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Inputs/TriaVertexInput.cpp

    r3935 r3938  
    1111#include "stdio.h"
    1212#include <string.h>
     13#include "./InputLocal.h"
    1314#include "../objects.h"
    1415#include "../../EnumDefinitions/EnumDefinitions.h"
     
    428429}
    429430/*}}}*/
     431/*FUNCTION TriaVertexInput::PatchSize(void);{{{1*/
     432int TriaVertexInput::PatchSize(void){
     433        return 3;
     434}
     435/*}}}*/
     436/*FUNCTION TriaVertexInput::PatchFill(double* patches);{{{1*/
     437void 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.