Message 1 of 2
The input point lies outside of Revit design limits
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an application which generates precast tunnel segments and places them along an alignment. This application worked for Revit 2017.
I am trying to port it to Revit 2024. Beyond a certain range from the origin, I am getting the following error when creating planes, typically with:
Plane oPlane = Plane.CreateByNormalAndOrigin(normal, oIntersection);
Error:
Autodesk.Revit.Exceptions.ArgumentException: 'The input point lies outside of Revit design limits.
The distance from the origin seems to vary, but here is a typical value from the origin:
7,21122593 mile
11,60534318 km
However the oficial Revit limit is 10 miles or 16 km, see:
https://help.autodesk.com/view/RVT/2018/ENU/?guid=GUID-3F79BF5A-F051-49F3-951E-D3E86F51BECC
Does anybody know what the problem here is?