View Single Post
  #4  
Old 10-12-2018, 06:11 AM
tom kirkman's Avatar
tom kirkman tom kirkman is offline
Registered User
 
Join Date: Oct 2002
Location: Perrysburg, Ohio
Posts: 397
Re: Hidden and Tangent lines on/off

I tried this and it works. I added these lines to my am_customize file.

Code:
;; *** Set isometric view profile for small assembly/part ***
(docu-register-view-exception-profile 
  :name                           "Isometric Small" 
  :label                          "Isometric Small"
  :minimum-number-of-parts        0
  :maximum-number-of-parts        100
  :view-type                      :general
  :hidden-line-visible            :off
  :centerline-creation            :off
  :symmetryline-creation          :off
  :tangent-line-visible           :on
  :thread-creation                :on
)

;; *** Set isometric view profle for large assemblies ***
(docu-register-view-exception-profile 
  :name                           "Isometric Large" 
  :label                          "Isometric Large"
  :minimum-number-of-parts        101
  :maximum-number-of-parts        999999
  :view-type                      :general
  :update-mode                    :graphics
  :facet-accuracy                 :low
  :hidden-line-visible            :off
  :centerline-creation            :off
  :symmetryline-creation          :off
  :tangent-line-visible           :on
  :thread-creation                :on
)
__________________
Tom Kirkman

Creo Elements/Direct 20.1
Dell Precision 3581
https://www.o-i.com
Reply With Quote