Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

GiD_Event_AfterProcess: will be called just after GiD has finished the process of 'words' and the word is consumed (the parameter is_rotation==1 if the command is a view movement).

This event could be interesting for some tricks, like save processed commands in a batch file, or send the commands to be processed by other GiD slave, etc.

...

GiD_Event_AfterEndCommand: will be called just after GiD pop a function from its stack. (the parameter is_view==1 if the command is some kind of view command, like a rotation, displacement, etc.)

This event could be used to try to mark the collection of keywords that below to an action, it is raised when the action is finished.

Code Block
proc GiD_Event_AfterEndCommand {is_view } {
}

...