Message 1 of 6
How to know which curve is span direction in floor sketch?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I have a floor like this. And I get all curves of floor sketch.
List<Curve> floorCurves = new List<Curve>();
foreach (CurveArray arr in floorSketch.Profile)
{
foreach (Curve curve in arr)
{
floorCurves.Add(curve);
}
}
I want to know which curve is span direction.
I'm trying to edit floor's sketch with SketchEditScope.
When I delete span direction curve and commit sketchEditScope, Revit say 'structural floor span direction not specified'.
I know I can change floor's structural to false.
But if I change floor's structural to false, Revit say 'Path Reinforcement can be placed only in Structural Floors and straight Structural Walls.' when the floor has Structure Path Reinforcemen.
So I want to know which curve is span direction, and set span direction to other curve when I delete span direction curve.
Is there a way to know?