particular points

Next
 From:  BurrMan
6029.1 
Hi Michael,
I have a file where I've crearted points with construct-curve-isect and the resulting points are overly heavy and cant be deleted without a crash (well, I didnt wait excessively long to see if it completed)

The saved file also becomes over 500 MB (which is inconsistent with a normal 3000 point file)

I just thought you may look at it. I dont need anything fixed or worked on with it.

Just run the file and run the isect command on the surface with the lines to generate the points. Saving is sluggish and deleting the points seems like a lock..
Attachments:

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
6029.2 In reply to 6029.1 
Hi Burr, it's because of the history data that's attached to every output point. Part of the history data is a list of all inputs that were sent into the command that created that object, and in this case you have 2500 inputs so there's a pretty substantial chunk of text data attached to every generated point there.

This is one of the reasons why I want to restructure the way that history is saved more in a central list of actions rather than as data attached to output objects.

If you remove the history data you should see the performance issues go away, you can remove history data from the selected objects by using this script here:
script: /* Remove history data from selected objects */ moi.geometryDatabase.getSelectedObjects().callMethod( 'deleteHistoryData' );

The delay that you see when deleting things is when the undo mechanism is gathering and compressing some big chunk of history data to save to the undo list.

Once you remove the history data both deleting and file saving should work more as you would expect.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  BurrMan
6029.3 In reply to 6029.2 
splendid!
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All