Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Create graphics by code

#1
Hello.

I would like to draw a line in the graphic view that moves with the robot tool. This is to simulate a Laser tracker that is following the robot movement.

Is it possible to get this feature by phyton script or other way in RoboDK?

Is there any plan on adding basic graphic creatilon like cubes, cilindres.....

Also I would like to know if it is possible to extend the GUI so that you can make you own toolbars, windows, etc, for dealing with your phyton scripts.

Thank you in advance


Jorge
#2
Helo Jorge,


It is possible to add your own objects and place them where you want, including tool objects. You can also create object shapes and curves/lines with the API using the following Python methods:

    RDK = Robolink()     # establish connection to the simulator (it will open a new instance of RoboDK or use an existing one)
    newobject1 = RDK.AddShape(triangle_points)
    newobject2 = RDK.AddCurve(curve_points)
    
I recommend you to take a look at the Python API:
https://www.robodk.com/doc/PythonAPI/
  




Users browsing this thread:
1 Guest(s)