1 |
/* |
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 nodes */ |
18 |
|
19 |
|
20 |
/**************************************************************/ |
21 |
|
22 |
/* Author: gross@access.edu.au */ |
23 |
/* Version: $Id$ */ |
24 |
|
25 |
/**************************************************************/ |
26 |
|
27 |
#include "Mesh.h" |
28 |
#include "Util.h" |
29 |
|
30 |
/**************************************************************/ |
31 |
|
32 |
|
33 |
void Finley_Mesh_setCoordinates(Finley_Mesh* self,escriptDataC* newX) { |
34 |
Finley_NodeFile_setCoordinates(self->Nodes,newX); |
35 |
Finley_ElementFile_setCoordinates(self->Elements,newX); |
36 |
Finley_ElementFile_setCoordinates(self->FaceElements,newX); |
37 |
Finley_ElementFile_setCoordinates(self->ContactElements,newX); |
38 |
Finley_ElementFile_setCoordinates(self->Points,newX); |
39 |
} |
40 |
/* |
41 |
* $Log$ |
42 |
*/ |