Jump to content

Make and change space by area not dimensions


Sem

Recommended Posts

Hello!

I have a list of net area's and want to do a size comparison. To do this I'd like to make a square with a specific area, and let VW decide the dimensions. E.g. make a square with 5 sq m by 2,3...... x 2,3...... m. Trying to first calculate this will take me a lot of time, and furthermore will always rely on an estimation.

Any thoughts? Thanks in advance!

Sem

(VW 2015 Architect)

Link to comment

If I understand, you want to give VW an area value and you want it to create a square of that area?

I think the best way is to use a simple script.

This will work:

Procedure RectangleByArea;

Var

AreaInQuestion : REAL;

Begin     
AreaInQuestion :=123456789;

RectangleN(0,0,1,0,Sqrt(AreaInQuestion),Sqrt(AreaInQuestion));

End;


Run(RectangleByArea);

Replace 123456789 with the area you want and it will draw a square of that area.

Pay close attention to the document settings for area and dimensions.

If that's really what you want to do, then it wouldn't be too complicated to add a dialog box or have it grab the values from somewhere. (At least, not too complicated for someone who knows what they're doing. Ponderously slow for me :) )

hth

mk

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...