IUA Programming - how to pass an entity as an argument
IUA Programming - how to pass an entity as an argument
(OP)
Just starting programming in IUA and finding my way round pretty well but stuck on one basic concept -
If for example I use the Search function in my program I get
the result in a geometric variable. Then I want to pass it as an argument to a subprogram but the subprogram wants an integer address.
Is there a standard way to translate to and fro between them?
An example code fragment would be great.
If for example I use the Search function in my program I get
the result in a geometric variable. Then I want to pass it as an argument to a subprogram but the subprogram wants an integer address.
Is there a standard way to translate to and fro between them?
An example code fragment would be great.
RE: IUA Programming - how to pass an entity as an argument
you have to pass your geometrical argument as an integer.
IUA:
PTD JPTD1
LOAD XXX JTPD1
FORTRAN:
SUBROUTINE XXX (JPTD1)
INTEGER*4 JPTD1
Regards
Stefan