cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need help navigating or using the PTC Community? Contact the community team. X

how to create circles from centre co ordinate data

SP_8016115
4-Participant

how to create circles from centre co ordinate data

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

1 ACCEPTED SOLUTION

Accepted Solutions

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.

 

tbraxton_0-1669213680456.png

 

 

Use the function datum point offset from csys:

tbraxton_0-1669212517674.png

 

 

Import the .pts file with the coordinate data:

 

tbraxton_1-1669212549275.png

 

 

There is a limit on the # of points than can be managed using the offset csys method:

  • Current limit to import datum points through Insert Model Datum > Point > Offset Coordinate System is 30,117.

 

  • Note: The *.PTS file should only contain X,Y & Z values and the value of Z should be zero
    • Example
      X                         Y                  Z
      -218.1822        11.5048             0                
      -215.7168        30.4058             0
========================================
Involute Development, LLC
Consulting Engineers
Specialists in Creo Parametric

View solution in original post

3 REPLIES 3

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:

 

Table Pattern Help 

 

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.

 

tbraxton_0-1669213680456.png

 

 

Use the function datum point offset from csys:

tbraxton_0-1669212517674.png

 

 

Import the .pts file with the coordinate data:

 

tbraxton_1-1669212549275.png

 

 

There is a limit on the # of points than can be managed using the offset csys method:

  • Current limit to import datum points through Insert Model Datum > Point > Offset Coordinate System is 30,117.

 

  • Note: The *.PTS file should only contain X,Y & Z values and the value of Z should be zero
    • Example
      X                         Y                  Z
      -218.1822        11.5048             0                
      -215.7168        30.4058             0
========================================
Involute Development, LLC
Consulting Engineers
Specialists in Creo Parametric
SP_8016115
4-Participant
(To:tbraxton)

Thanks for helping.

Top Tags