I'm trying to create a wall from the cad link

I’m trying to create a wall from the cad link, I’ve read and tried following several posts, but it’s giving an error in the conversion unit, I’ve already converted to cm, m, and mm and it continues. Does anyone know what can it be?
Teste paredes2 dwg.dyn (38.0 KB)

This is unfortunately due to the package being out of date with current Revit unit types. You can find a little more info here, as well as a workaround with another node.

1 Like

Hello, I started from something simple, if it can help you

code block + picture
a=X.MinPoint;
b=X.MaxPoint;
Point.ByCoordinates(
a.X,a.Y,a.Z-1);
Point.ByCoordinates(
b.X,b.Y,b.Z+1);

cordially
christian.stan

1 Like

I really appreciate the help. But a doubt, this node SplitbyTools is from which package?

1 Like

Ampersand package discovered with the help of Mr. sovitek
image

accessible via the package manager.

cordially
christian.stan

2 Likes

Can the conversion issue be cause by the node you use?
You use one from a (different) package.

Thank you for your help, @christian.stan! But for me it still didn’t work, the error says that the bounding box could not be created because no geometries were provided. I do not understand why.

Sublist 110 is empty. That’s where the error is coming from (and potentially other sublists as well).

2 Likes

Hi, your starting project does not have axes in the corresponding layers (it would be easier)

cordially
christian.stan

1 Like