Author Topic: Minimum and Maximum Arc length of Revclud  (Read 9382 times)

0 Members and 1 Guest are viewing this topic.

irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: Minimum and Maximum Arc length of Revclud
« Reply #15 on: July 26, 2012, 05:56:59 AM »
Then you might be in luck. Try something like this:
Code: [Select]
(setvar "*REVCLOUDMAXARCLENGTH" 1000.0)If it doesn't error / return nil, check if the registry value has been updated.
Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.

Coder

  • Swamp Rat
  • Posts: 827
Re: Minimum and Maximum Arc length of Revclud
« Reply #16 on: July 26, 2012, 06:06:13 AM »
Then you might be in luck. Try something like this:
Code: [Select]
(setvar "*REVCLOUDMAXARCLENGTH" 1000.0)If it doesn't error / return nil, check if the registry value has been updated.

Fantastic  :wink:

it is included as system variable from version 2013 , and I tried for the minimum value and it worked great .
Code: [Select]
(setvar "*REVCLOUDMINARCLENGTH" 1000.0)
A very great job :-) .

Thanks a lot irneb 



irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: Minimum and Maximum Arc length of Revclud
« Reply #17 on: July 26, 2012, 06:22:25 AM »
Glad to know about this myself! I wonder if it's documented somewhere.
Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.

3dwannab

  • Newt
  • Posts: 43
Re: Minimum and Maximum Arc length of Revclud
« Reply #18 on: April 07, 2018, 09:37:55 PM »
I was looking for this also. Thanks.

FWIW, you can also put this in your acaddoc.lsp to force set the drawing mode to rectangle.
Code: [Select]
(SETVAR "REVCLOUDCREATEMODE" 1) ;_ Force to be Rectangular Cloud, 2 is Polygon cloud. Not sure about others
Also for grips.
Code: [Select]
(SETVAR "REVCLOUDGRIPS" 1) ;_ Force this variable
Found this here:
https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/problems-with-revcloud-customizing-arclength-and-command-options/td-p/7639392.