Author Topic: Geometric Constraints  (Read 2182 times)

0 Members and 1 Guest are viewing this topic.

GDF

  • Water Moccasin
  • Posts: 2081
Geometric Constraints
« on: March 28, 2014, 10:30:53 AM »
I am looking for a way to disable AutoCAD's Geometric Constraints and to delete all existing Constraints through lisp if that is possible each time I open a drawing.

Would this be my approach (setvar "CONSTRAINTSOLVEMODE" 0)?
Why is there never enough time to do it right, but always enough time to do it over?
BricsCAD 2020x64 Windows 10x64

GDF

  • Water Moccasin
  • Posts: 2081
Re: Geometric Constraints
« Reply #1 on: April 01, 2014, 10:57:26 AM »
I found what I was looking for...To turn off the "Infer Geometric Constraints" toggle within the Constraint Settings dialog box in the Parametric menu pull down.

I guess my question is how to toggle this setting off thru lisp.
Why is there never enough time to do it right, but always enough time to do it over?
BricsCAD 2020x64 Windows 10x64

PKENEWELL

  • Bull Frog
  • Posts: 320
Re: Geometric Constraints
« Reply #2 on: April 01, 2014, 01:39:48 PM »
Try This:

Code: [Select]
(setvar "CONSTRAINTINFER" 0)
"When you are asked if you can do a job, tell 'em, 'Certainly I can!' Then get busy and find out how to do it." - Theodore Roosevelt

GDF

  • Water Moccasin
  • Posts: 2081
Re: Geometric Constraints
« Reply #3 on: April 01, 2014, 03:56:14 PM »
Thank you, that did it.
Why is there never enough time to do it right, but always enough time to do it over?
BricsCAD 2020x64 Windows 10x64