1 |
gross |
532 |
/* |
2 |
|
|
****************************************************************************** |
3 |
|
|
* * |
4 |
|
|
* COPYRIGHT ACcESS 2003,2004,2005,2006 - All Rights Reserved * |
5 |
|
|
* * |
6 |
|
|
* This software is the property of ACcESS. No part of this code * |
7 |
|
|
* may be copied in any form or by any means without the expressed written * |
8 |
|
|
* consent of ACcESS. Copying, use or modification of this software * |
9 |
|
|
* by any unauthorised person is illegal unless that person has a software * |
10 |
|
|
* license agreement with ACcESS. * |
11 |
|
|
* * |
12 |
|
|
****************************************************************************** |
13 |
|
|
*/ |
14 |
|
|
|
15 |
|
|
/**************************************************************/ |
16 |
|
|
|
17 |
|
|
/* Finley: Mesh: sets new coordinates for elements */ |
18 |
|
|
|
19 |
|
|
/**************************************************************/ |
20 |
|
|
|
21 |
|
|
/* Author: gross@access.edu.au */ |
22 |
|
|
/* Version: $Id$ */ |
23 |
|
|
|
24 |
|
|
/**************************************************************/ |
25 |
|
|
|
26 |
|
|
#include "ElementFile.h" |
27 |
|
|
|
28 |
|
|
/**************************************************************/ |
29 |
|
|
|
30 |
|
|
|
31 |
|
|
void Finley_ElementFile_setCoordinates(Finley_ElementFile* self,escriptDataC* newX) { |
32 |
|
|
self->volume_is_valid=FALSE; |
33 |
|
|
self->DSDV_is_valid=FALSE; |
34 |
|
|
self->DSLinearDV_is_valid=FALSE; |
35 |
|
|
self->X_is_valid=FALSE; |
36 |
|
|
} |
37 |
|
|
/* |
38 |
|
|
* $Log$ |
39 |
|
|
*/ |