installed Revit 2020.1 SDK Update July 31, 2019

This commit is contained in:
Jeremy Tammik
2019-09-18 14:02:47 +02:00
parent 4ef4948320
commit afcbef71f3
32 changed files with 312 additions and 2264 deletions
@@ -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;