CoCreate User Forum

CoCreate User Forum (https://www.cocreateusers.org/forum/index.php)
-   CoCreate Drafting (https://www.cocreateusers.org/forum/forumdisplay.php?f=8)
-   -   Some questions... (https://www.cocreateusers.org/forum/showthread.php?t=8121)

mortimer 10-31-2013 01:40 PM

Some questions...
 
Dear all,
our company switched 2D CAD from Stheno/Medusa to Creo Draft 18.1
we use 2D system only to manage layouts, so now we have some problems:
1 we can't convert directly Stheno/medusa file to .mi, we must to use DXF/DWG format. The size's file increase more/less three times (around 140MB)
2 we have a lot of lags during pan and zoom with scroll
Someone have any suggestion about these two points?

Shaba 11-01-2013 12:10 AM

Re: Some questions...
 
Prova a pulire il disegno...

Try to clean drawing

PHP Code:

DEFINE Rip_totale
    DELETE SELECT 
GLOBAL PICTURES ALL CONFIRM
    SHOW_INV_GEO 
GLOBAL CONFIRM
    TRAP_ERROR
    INQ_SELECTED_ELEM SELECT 
GLOBAL INFOS 'INVISIBLE' CONFIRM
    
IF (INQ 14)
      
TRAP_ERROR
      DELETE SELECT 
GLOBAL INFOS 'INVISIBLE' CONFIRM
      END
      DISPLAY 
('SONO STATE ELIMINATI N.'+(STR (INQ 14))+
      
' ELEMENTI INVISIBILI!')
    ELSE
      
DISPLAY ("NON E' STATO TROVATO NESSUN ELEMENTO INVISIBILE!")
    
END_IF
END_DEFINE 


Friedly 11-01-2013 03:56 AM

Re: Some questions...
 
Hello Mortimer,

another possibility to get rid of unnecessary elements in the drawing is the following:

Code:


DEFINE Store_to_clean
STORE MI SELECT GLOBAL ALL CONFIRM DEL_OLD 'superdupertmpdatei.mi'
DELETE ALL CONFIRM
LOAD CHECK_2D 'superdupertmpdatei.mi'
END_DEFINE

Drafting stores only the elements that it knows the rest will be deleted.

mortimer 11-02-2013 05:26 AM

Re: Some questions...
 
Quote:

Originally Posted by Shaba (Post 25531)
Prova a pulire il disegno...

Try to clean drawing

PHP Code:

DEFINE Rip_totale
    DELETE SELECT 
GLOBAL PICTURES ALL CONFIRM
    SHOW_INV_GEO 
GLOBAL CONFIRM
    TRAP_ERROR
    INQ_SELECTED_ELEM SELECT 
GLOBAL INFOS 'INVISIBLE' CONFIRM
    
IF (INQ 14)
      
TRAP_ERROR
      DELETE SELECT 
GLOBAL INFOS 'INVISIBLE' CONFIRM
      END
      DISPLAY 
('SONO STATE ELIMINATI N.'+(STR (INQ 14))+
      
' ELEMENTI INVISIBILI!')
    ELSE
      
DISPLAY ("NON E' STATO TROVATO NESSUN ELEMENTO INVISIBILE!")
    
END_IF
END_DEFINE 


Ciao Shaba, thank you for fast reply.
About your instruction, have I to load it like a macro?
Grazie, sono veramente poco preparato riguardo questo sistema CAD...


All times are GMT -8. The time now is 06:29 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.