开发者

Revit Architecture 2012: How to change any wall in curtain wall and how to manage the curtain lines

开发者 https://www.devze.com 2023-03-21 21:53 出处:网络
I have a program which selects a wall and get different parameters, but I don\'t know how to change a wall in curtain wall. And after I want to control the number and the specific places of lines in t

I have a program which selects a wall and get different parameters, but I don't know how to change a wall in curtain wall. And after I want to control the number and the specific places of lines in the wall. I join my code, but it does not work.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk.Revit.DB;
using Autodesk.Revit.DB.Architecture;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;
using Autodesk开发者_JAVA技巧.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB.Structure;

namespace test2011
{
  [TransactionAttribute(TransactionMode.Automatic)]
  [RegenerationAttribute(RegenerationOption.Manual)]
  public class Class1 : IExternalCommand
  {
    public Autodesk.Revit.UI.Result Execute(ExternalCommandData commandData, 
      ref string message, ElementSet elements)
    {
      // Select some elements in Revit before invoking this command
      // Get the handle of current document.
      UIDocument uidoc = commandData.Application.ActiveUIDocument;

      // Get the element selection of current document.
      Selection selection = uidoc.Selection;
      ElementSet collection = selection.Elements;

      if (0 == collection.Size)
      {
        // If no elements selected.
        TaskDialog.Show("Revit", "You haven't selected any elements.");
      }
      else
      {
        TaskDialog.Show("revit", "On entre dans le else");
        foreach (Wall wall in collection)
        {
          LocationCurve locationCurve = wall.Location as LocationCurve;
          XYZ endPoint0 = locationCurve.Curve.get_EndPoint(0);
          XYZ endPoint1 = locationCurve.Curve.get_EndPoint(1);
          TaskDialog.Show("revit", "point 0: " + endPoint0.ToString() + 
                                   " \npoint 1: " + endPoint1.ToString()+
                                   " \nWallType: "+ 
                                   wall.WallType.Kind.ToString());
          //Create curtain line
          //Create the Points
          double x1 = endPoint0.X;
          double y1 = endPoint0.Y - 3;
          double z = endPoint0.Z;
          double x2 = endPoint1.X;
          double y2 = endPoint1.Y - 3;
          XYZ point1 = uidoc.Application.Application.Create.NewXYZ(x1, y1, z);
          XYZ point2 = uidoc.Application.Application.Create.NewXYZ(x2, y2, z);

          //Create line
          Line line = 
            uidoc.Application.Application.Create.NewLineBound(point1, point2);

          DetailCurve detailCurve = 
            uidoc.Document.Create.NewDetailCurve(uidoc.Document.ActiveView, 
              line);

          TaskDialog.Show("Done", "Line Created");
        }
      }
      return Result.Succeeded;
    }
  }
}


Using some RevitPythonShell kung-fu, here is a bit of Revit API for setting the selected wall to be a curtain wall:

# get the selected wall
wall = selection[0]

# find a curtain wall type
wallTypes = list(FilteredElementCollector(doc).OfClass(WallType))
curtainWallType = [wt for wt in wallTypes if wt.Kind == WallKind.Curtain][0]

# set the wall type
transaction = Transaction(doc, 'Setting wall type to curtain wall')
transaction.Start()
wall.WallType = curtainWallType
transaction.Commit()
0

精彩评论

暂无评论...
验证码 换一张
取 消