Post Reply 
change parametric plot setup programmatically
08-13-2018, 07:25 PM (This post was last modified: 08-13-2018 07:26 PM by JMB.)
Post: #5
RE: change parametric plot setup programmatically
I don't know how you're writing your program, but for me something like the following works ok:
PHP Code:
EXPORT Test()
BEGIN
  Parametric
.Xmin:=-1;
  
Parametric.Xmax:=1;
  
Parametric.Ymin:=-1;
  
Parametric.Ymax:=1;
  
STARTAPP("Parametric");
  
STARTVIEW(1);
END
When I execute Test, the plot view of the Parametric App appears, and when I check the Setup Plot view, the values assigned by the program are there.
I hope this helps.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: change parametric plot setup programmatically - JMB - 08-13-2018 07:25 PM



User(s) browsing this thread: 1 Guest(s)