Revit Architecture 2012: как изменить любую стену в навесной стене и как управлять линиями навеса - PullRequest
0 голосов
/ 21 июля 2011

У меня есть программа, которая выбирает стену и получает разные параметры, но я не знаю, как изменить стену в ненесущей стене.А после я хочу контролировать количество и конкретные места линий в стене.Я присоединяюсь к своему коду, но он не работает.

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.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;
    }
  }
}

1 Ответ

0 голосов
/ 12 октября 2011

Используя немного RevitPythonShell кунг-фу, вот немного Revit API для установки выбранной стены в качестве ненесущей стены:

# 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()
...