Rev | Line | |
---|
[4062] | 1 | /*!\file InputDuplicatex
|
---|
[4046] | 2 | * \brief: duplicte an input inside the elements, onto another, and wipe it off.
|
---|
[4043] | 3 | */
|
---|
| 4 |
|
---|
[4062] | 5 | #include "./InputDuplicatex.h"
|
---|
[4043] | 6 | #include "../../shared/shared.h"
|
---|
| 7 | #include "../../include/include.h"
|
---|
| 8 | #include "../../toolkits/toolkits.h"
|
---|
| 9 | #include "../../EnumDefinitions/EnumDefinitions.h"
|
---|
| 10 |
|
---|
[4218] | 11 | void InputDuplicatex(Elements* elements,Nodes* nodes,Vertices* vertices,Loads* loads,Materials* materials,Parameters* parameters,int original_enum, int new_enum){
|
---|
[4572] | 12 |
|
---|
| 13 | /*Go through elemnets, and ask to reinitialie the input: */
|
---|
[4043] | 14 |
|
---|
| 15 | int i;
|
---|
| 16 | for(i=0;i<elements->Size();i++){
|
---|
| 17 | Element* element=(Element*)elements->GetObjectByOffset(i);
|
---|
[4112] | 18 | element->InputDuplicate(original_enum,new_enum);
|
---|
[4043] | 19 | }
|
---|
| 20 |
|
---|
| 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.