Files
RevitSdkSamples/SDK/Samples/CreateComplexAreaRein/CS/GeomHelper.cs
T
2021-04-20 11:36:21 +02:00

140 lines
5.0 KiB
C#

//
// (C) Copyright 2003-2019 by Autodesk, Inc.
//
// Permission to use, copy, modify, and distribute this software in
// object code form for any purpose and without fee is hereby granted,
// provided that the above copyright notice appears in all copies and
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
//
// Use, duplication, or disclosure by the U.S. Government is subject to
// restrictions set forth in FAR 52.227-19 (Commercial Computer
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
// (Rights in Technical Data and Computer Software), as applicable.
//
namespace Revit.SDK.Samples.CreateComplexAreaRein.CS
{
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using Autodesk.Revit;
using Autodesk.Revit.DB;
using Autodesk.Revit.DB.Structure;
using GeoElement = Autodesk.Revit.DB.GeometryElement;
using Element = Autodesk.Revit.DB.Element;
/// <summary>
/// provide utility method to get geometry data for
/// creating AreaReinforcement on wall or floor
/// </summary>
class GeomHelper
{
private Document m_currentDoc; //active document
/// <summary>
/// constructor, initialize m_currentDoc
/// </summary>
public GeomHelper()
{
m_currentDoc = Command.CommandData.Application.ActiveUIDocument.Document;
}
/// <summary>
/// get necessary data when create AreaReinforcement on a horizontal floor
/// </summary>
/// <param name="floor">floor on which to create AreaReinforcemen</param>
/// <param name="refer">reference of the horizontal face on the floor</param>
/// <param name="curves">curves compose the horizontal face of the floor</param>
/// <returns>is successful</returns>
public bool GetFloorGeom(Floor floor, ref Reference refer, ref IList<Curve> curves)
{
//get horizontal face's reference
FaceArray faces = GeomUtil.GetFaces(floor);
foreach (Face face in faces)
{
if (GeomUtil.IsHorizontalFace(face))
{
refer = face.Reference;
break;
}
}
if (null == refer)
{
return false;
}
//get analytical model profile
AnalyticalModel model = floor.GetAnalyticalModel();
if (null == model)
{
return false;
}
curves = model.GetCurves(AnalyticalCurveType.ActiveCurves);
if (!GeomUtil.IsRectangular(curves))
{
return false;
}
curves = AddInlaidCurves(curves, 0.5);
return true;
}
/// <summary>
/// create CurveArray which contain 8 curves, 4 is exterior lines and 4 is interior lines
/// </summary>
/// <param name="curves"></param>
/// <param name="scale"></param>
/// <returns></returns>
private IList<Curve> AddInlaidCurves(IList<Curve> curves, double scale)
{
//because curves is readonly, can't use method Curve.Append(Curve)
List<Line> lines = new List<Line>();
for (int i = 0; i < 4; i++)
{
Line temp = curves[i] as Line;
lines.Add(temp);
}
//length and width of the rectangle
double length = GeomUtil.GetLength(lines[0]);
double width = GeomUtil.GetLength(lines[1]);
for (int i = 0; i < 2; i++)
{
//height line
Line tempLine1 = lines[i * 2];
Line scaledLine1 = GeomUtil.GetScaledLine(tempLine1, scale);
double distance1 = scale / 2 * width;
Line movedLine1 = GeomUtil.GetXYParallelLine(scaledLine1, distance1);
lines.Add(movedLine1);
//width line
Line tempLine2 = lines[i * 2 + 1];
Line scaledLine2 = GeomUtil.GetScaledLine(tempLine2, scale);
double distance2 = scale / 2 * length;
Line movedLine2 = GeomUtil.GetXYParallelLine(scaledLine2, distance2);
lines.Add(movedLine2);
}
//add all 8 lines into return array
IList<Curve> allLines = new List<Curve>();
for (int i = 0; i < 8; i++)
{
allLines.Add(lines[i]);
}
return allLines;
}
}
}