Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
How to create circles from centre co-ordinates data? Radius is same for all circles.
Is there any way in which first we can define the coordinate axes then based on the centre co-ordinate and radius plot the circles. The boundary is a square, basically it is a microstructure consisting of circles inside a square.
Data is in this form:
Circle x y r
1 2 2 1
2 10 5 1
Solved! Go to Solution.
It would appear that you are managing an array of points. The most expedient method is to extract the cartesian coordinates of the circle center points from your data and save it in a .pts file. You can then import this array into Creo to generate the center points. Assuming you have less than 30K (see limit at end of this reply) points to import then using the following method will automate the creation of the center points.
Once you have the center points imported, you can create one sketch of the circle on the first center and then pattern it to all of the imported center points. See the enclosed Creo 7 part file for an example. in the zip file along with a sample .pts file.
Use the function datum point offset from csys:
Import the .pts file with the coordinate data:
There is a limit on the # of points than can be managed using the offset csys method:
This would be a good example of the type of thing to use a table pattern. You don't specify whether you are just wanting to sketch out the results, or use these circles to cut something, but it's the same basic thing for either.
Check out this bit of help from PTC:
It would appear that you are managing an array of points. The most expedient method is to extract the cartesian coordinates of the circle center points from your data and save it in a .pts file. You can then import this array into Creo to generate the center points. Assuming you have less than 30K (see limit at end of this reply) points to import then using the following method will automate the creation of the center points.
Once you have the center points imported, you can create one sketch of the circle on the first center and then pattern it to all of the imported center points. See the enclosed Creo 7 part file for an example. in the zip file along with a sample .pts file.
Use the function datum point offset from csys:
Import the .pts file with the coordinate data:
There is a limit on the # of points than can be managed using the offset csys method:
Thanks for helping.