mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-09-26 04:34:47 +00:00
installed Revit 2020.1 SDK Update July 31, 2019
This commit is contained in:
@@ -4,8 +4,16 @@ using Autodesk.Revit.DB;
|
||||
|
||||
namespace Revit.SDK.Samples.Custom2DExporter.CS
|
||||
{
|
||||
/// <summary>
|
||||
/// Collection of helpful utility classes.
|
||||
/// </summary>
|
||||
public class Utilities
|
||||
{
|
||||
/// <summary>
|
||||
/// Utility to properly append points from 1 list to another.
|
||||
/// </summary>
|
||||
/// <param name="to"></param>
|
||||
/// <param name="from"></param>
|
||||
public static void addTo(IList<XYZ> to, IList<XYZ> from)
|
||||
{
|
||||
int cnt = from.Count;
|
||||
|
||||
Reference in New Issue
Block a user