32 lines
947 B
C#
32 lines
947 B
C#
using Autodesk.Revit.DB;
|
|
using Autodesk.Revit.DB.Plumbing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KMBIM.Revit.Tools.Cmd.PipeMatchInterval
|
|
{
|
|
public class MovePipeInfo
|
|
{
|
|
public Pipe PipeToMove { get; set; }
|
|
public Autodesk.Revit.DB.XYZ InterPt { set; get; }
|
|
|
|
public Autodesk.Revit.DB.XYZ InterZ0Pt { set; get; }
|
|
|
|
public double Offset { get; set; }
|
|
public double NormalDiameter { get; set; }
|
|
public double OuterDia { get; set; }
|
|
public double OuterDiaRound { get; set; }
|
|
public double InsultionThick { get; set; }
|
|
public double UserInsultionThick { get; set; }
|
|
//public double UserInsultionThickCri { get; set; }
|
|
|
|
public double Distance { get; set; }
|
|
public double DistanceFromCri { get; set; }
|
|
|
|
public int JudgePipe { get; set; }
|
|
}
|
|
}
|