forked from chuongmep/CadPythonShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueryCurveTests.cs
More file actions
1182 lines (984 loc) · 50.4 KB
/
QueryCurveTests.cs
File metadata and controls
1182 lines (984 loc) · 50.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// (C) Copyright 2004 by Autodesk, Inc.
//
// Permission to use, copy, modify, and distribute this software in
// object code form for any purpose and without fee is hereby granted,
// provided that the above copyright notice appears in all copies and
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
//
// Use, duplication, or disclosure by the U.S. Government is subject to
// restrictions set forth in FAR 52.227-19 (Commercial Computer
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
// (Rights in Technical Data and Computer Software), as applicable.
//
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Geometry;
using Autodesk.AutoCAD.Runtime;
using MgdDbg.ObjTests.TestFramework;
using AcadApp = Autodesk.AutoCAD.ApplicationServices.Application;
namespace MgdDbg.ObjTests
{
/// <summary>
/// Summary description for QueryCurveTests.
/// </summary>
public class QueryCurveTests : MgdDbgTestFuncs
{
private Database m_db = null;
private Editor m_ed = null;
public
QueryCurveTests()
{
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Area", "Get the area of the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(Area), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Is closed", "Test whether the curve is closed", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(IsClosed), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Is periodic", "Test whether the curve is periodic", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(IsPeriodic), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get start/end points", "Add Point entity where the start and end points are", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(StartEndPoints), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get start/end params", "Get start and end params of the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(StartEndParams), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get point at param", "Get point at a given parameter of the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(PointAtParam), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get param at point", "Get param at a given point on the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(ParamAtPoint), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get distance at param", "Get distance at a given param of the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(DistanceAtParam), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get param at distance", "Get param at a given distance along the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(ParamAtDistance), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get distance at point", "Get distance at a given point on the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(DistanceAtPoint), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get point at distance", "Get point at a given distance along the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(PointAtDistance), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get derivatives at param", "Get first and second derivatives", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(DerivativesAtParam), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get derivatives at point", "Get first and second derivatives", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(DerivativesAtPoint), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get closest point", "Get point on the curve closest to point picked", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(ClosestPointTo), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get closest point using direction", "Get point on the curve closest to point picked (in the direction specified)", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(ClosestPointToDirection), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get offset curves", "Get the offset of the given curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(OffsetCurves), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get offset curves given plane normal", "Get the offset of the given curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(OffsetCurvesGivenPlaneNormal), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get projected curve", "Get the projected curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(ProjectedCurve), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get ortho projected curve", "Get the projected curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(OrthoProjectedCurve), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get split curves from params", "Get the sub-curves given certain params", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(SplitCurvesParams), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Get split curves from points", "Get the sub-curves given certain points", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(SplitCurvesPoints), MgdDbgTestFuncInfo.TestType.Query));
m_testFrameworkFuncs.Add(new MgdDbgTestFuncInfo("Spline", "Get a Spline entity representing the curve", typeof(Curve), new MgdDbgTestFuncInfo.TestFunc(Spline), MgdDbgTestFuncInfo.TestType.Query));
}
#region Tests
public void
Area()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
m_ed.WriteMessage(string.Format("\nAREA: {0}", Converter.DistanceToString(curve.Area, DistanceUnitFormat.Decimal, -1)));
tr.Commit();
}
}
}
public void
IsClosed()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
m_ed.WriteMessage(string.Format("\nCLOSED: {0}", curve.Closed.ToString()));
tr.Commit();
}
}
}
public void
IsPeriodic()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
m_ed.WriteMessage(string.Format("\nPERIODIC: {0}", curve.IsPeriodic.ToString()));
tr.Commit();
}
}
}
public void
StartEndPoints()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
// get StartPoint (if appliacable) and make a point entity in Red
// to graphically depict it.
try
{
Point3d startPt = curve.StartPoint;
m_ed.WriteMessage(string.Format("\nSTART POINT: {0}", Utils.AcadUi.PtToStr(startPt)));
Utils.Db.MakePointEnt(startPt, 1, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
if (e.ErrorStatus == Autodesk.AutoCAD.Runtime.ErrorStatus.NotApplicable)
m_ed.WriteMessage("\nSTART POINT: Not Applicable");
else
throw e;
}
// get EndPoint (if appliacable) and make a point entity in Yellow
// to graphically depict it.
try
{
Point3d endPt = curve.EndPoint;
m_ed.WriteMessage(string.Format("\nEND POINT: {0}", Utils.AcadUi.PtToStr(endPt)));
Utils.Db.MakePointEnt(endPt, 2, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
if (e.ErrorStatus == Autodesk.AutoCAD.Runtime.ErrorStatus.NotApplicable)
m_ed.WriteMessage("\nEND POINT: Not Applicable");
else
throw e;
}
tr.Commit();
}
}
}
public void
StartEndParams()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
double startParam = curve.StartParam;
m_ed.WriteMessage(string.Format("\nSTART PARAM (as double): {0}", Converter.DistanceToString(startParam)));
m_ed.WriteMessage(string.Format("\nSTART PARAM (as angle): {0}", Converter.AngleToString(startParam)));
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
if (e.ErrorStatus == Autodesk.AutoCAD.Runtime.ErrorStatus.NotApplicable)
m_ed.WriteMessage("\nSTART PARAM: Not Applicable");
else
throw e;
}
try
{
double endParam = curve.EndParam;
m_ed.WriteMessage(string.Format("\nEND PARAM (as double): {0}", Converter.DistanceToString(endParam)));
m_ed.WriteMessage(string.Format("\nEND PARAM (as angle): {0}", Converter.AngleToString(endParam)));
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
if (e.ErrorStatus == Autodesk.AutoCAD.Runtime.ErrorStatus.NotApplicable)
m_ed.WriteMessage("\nEND PARAM: Not Applicable");
else
throw e;
}
tr.Commit();
}
}
}
public void
PointAtParam()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
PrintParamInterval(curve);
double param;
if (GetCurveParam(out param))
{
try
{
Point3d pt = curve.GetPointAtParameter(param);
m_ed.WriteMessage(string.Format("\nPOINT: {0}", Utils.AcadUi.PtToStr(pt)));
Utils.Db.MakePointEnt(pt, 3, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
}
tr.Commit();
}
}
}
public void
ParamAtPoint()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
// the point picked is not necessarily on the curve (unless we used
// an OSNAP that forced it on the curve). We will first get the closest
// point on the curve from the picked point and then use that.
Point3d ptOnCurve = curve.GetClosestPointTo(Utils.Db.UcsToWcs(pickPt), false);
double param = curve.GetParameterAtPoint(ptOnCurve);
m_ed.WriteMessage(string.Format("\nPARAM (as double): {0}", Converter.DistanceToString(param)));
m_ed.WriteMessage(string.Format("\nPARAM (as angle): {0}", Converter.AngleToString(param)));
Utils.Db.MakePointEnt(ptOnCurve, 3, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
DistanceAtParam()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
PrintParamInterval(curve);
double param;
if (GetCurveParam(out param))
{
try
{
double dist = curve.GetDistanceAtParameter(param);
m_ed.WriteMessage(string.Format("\nDISTANCE: {0}", Converter.DistanceToString(dist)));
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
}
tr.Commit();
}
}
}
public void
ParamAtDistance()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
// first prompt for distance along the curve
PromptDoubleResult res = m_ed.GetDistance("\nDistance along curve");
if (res.Status != PromptStatus.OK)
{
return;
}
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
double param = curve.GetParameterAtDistance(res.Value);
m_ed.WriteMessage(string.Format("\nPARAM (as double): {0}", Converter.DistanceToString(param)));
m_ed.WriteMessage(string.Format("\nPARAM (as angle): {0}", Converter.AngleToString(param)));
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
DistanceAtPoint()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
// the point picked is not necessarily on the curve (unless we used
// an OSNAP that forced it on the curve). We will first get the closest
// point on the curve from the picked point and then use that.
Point3d ptOnCurve = curve.GetClosestPointTo(Utils.Db.UcsToWcs(pickPt), false);
double dist = curve.GetDistAtPoint(ptOnCurve); // TBD: function should be called GetDistanceAtPoint()
m_ed.WriteMessage(string.Format("\nDISTANCE: {0}", Converter.DistanceToString(dist)));
Utils.Db.MakePointEnt(ptOnCurve, 3, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
PointAtDistance()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
// first prompt for distance along the curve
PromptDoubleResult res = m_ed.GetDistance("\nDistance along curve");
if (res.Status != PromptStatus.OK)
{
return;
}
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
Point3d ptOnCurve = curve.GetPointAtDist(res.Value); // TBD: function should be called GetPointAtDistance()
m_ed.WriteMessage(string.Format("\nPOINT: {0}", Utils.AcadUi.PtToStr(ptOnCurve)));
Utils.Db.MakePointEnt(ptOnCurve, 3, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
DerivativesAtParam()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
PrintParamInterval(curve);
double param;
if (GetCurveParam(out param))
{
// We need a point on the curve to create the Ray entities we will
// use to mark the two axes. If the user gives us an invalid param,
// we aren't catching it here, so it will throw an exception. Under
// normal circumstances, we could just put this in the try/catch block
// below. Here, we want to demonstrate each possible error.
try
{
Point3d ptOnCurve = curve.GetPointAtParameter(param);
try
{
Vector3d firstDeriv = curve.GetFirstDerivative(param);
m_ed.WriteMessage(string.Format("\nFIRST DERIV: {0}", Utils.AcadUi.VecToStr(firstDeriv)));
Utils.Db.MakeRayEnt(ptOnCurve, firstDeriv, 1, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nFirst Derivative ERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
try
{
Vector3d secondDeriv = curve.GetSecondDerivative(param);
m_ed.WriteMessage(string.Format("\nSECOND DERIV: {0}", Utils.AcadUi.VecToStr(secondDeriv)));
Utils.Db.MakeRayEnt(ptOnCurve, secondDeriv, 2, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nSecond Derivative ERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nParameter is not on curve: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
return;
}
}
tr.Commit();
}
}
}
public void
DerivativesAtPoint()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
// Again, we could put these all in a single try/catch block, but we
// want to catch all errors individually so we can demonstrate how the
// functions behave.
try
{
// the point picked is not necessarily on the curve (unless we used
// an OSNAP that forced it on the curve). We will first get the closest
// point on the curve from the picked point and then use that.
Point3d ptOnCurve = curve.GetClosestPointTo(Utils.Db.UcsToWcs(pickPt), false);
Utils.Db.MakePointEnt(ptOnCurve, 3, tr, m_db);
try
{
Vector3d firstDeriv = curve.GetFirstDerivative(ptOnCurve);
m_ed.WriteMessage(string.Format("\nFIRST DERIV: {0}", Utils.AcadUi.VecToStr(firstDeriv)));
Utils.Db.MakeRayEnt(ptOnCurve, firstDeriv, 1, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nFirst Derivative ERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
try
{
Vector3d secondDeriv = curve.GetSecondDerivative(ptOnCurve);
m_ed.WriteMessage(string.Format("\nSECOND DERIV: {0}", Utils.AcadUi.VecToStr(secondDeriv)));
Utils.Db.MakeRayEnt(ptOnCurve, secondDeriv, 2, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nSecond Derivative ERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nPoint is not on curve: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
return;
}
tr.Commit();
}
}
}
public void
ClosestPointTo()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
// let user pick an arbitrary point
PromptPointResult prPtRes = m_ed.GetPoint("\nEnter a point");
if (prPtRes.Status != PromptStatus.OK)
return;
bool allowExtend = false;
if (Utils.AcadUi.PromptYesNo("\nExtend curve?", allowExtend, out allowExtend) != PromptStatus.OK)
return;
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
Point3d ptOnCurve = curve.GetClosestPointTo(Utils.Db.UcsToWcs(prPtRes.Value), allowExtend);
m_ed.WriteMessage(string.Format("\nCLOSEST PT: {0}", Utils.AcadUi.PtToStr(ptOnCurve)));
Utils.Db.MakePointEnt(Utils.Db.UcsToWcs(prPtRes.Value), 4, tr, m_db);
Utils.Db.MakePointEnt(ptOnCurve, 3, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
ClosestPointToDirection()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
// let user pick an arbitrary point
PromptPointResult prPtRes = m_ed.GetPoint("\nEnter a point");
if (prPtRes.Status != PromptStatus.OK)
return;
// find out which direction they want to go
PromptPointOptions prDirPtOpts = new PromptPointOptions("\nDirection");
prDirPtOpts.BasePoint = prPtRes.Value;
prDirPtOpts.UseBasePoint = true;
PromptPointResult prDirPtRes = m_ed.GetPoint(prDirPtOpts);
if (prDirPtRes.Status != PromptStatus.OK)
return;
Vector3d dirVec = Utils.Db.UcsToWcs(prPtRes.Value - prDirPtRes.Value);
if (dirVec.IsZeroLength())
{
m_ed.WriteMessage("\nDirection vector is zero-length!");
return;
}
bool allowExtend = false;
if (Utils.AcadUi.PromptYesNo("\nExtend curve?", allowExtend, out allowExtend) != PromptStatus.OK)
return;
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
Point3d ptOnCurve = curve.GetClosestPointTo(Utils.Db.UcsToWcs(prPtRes.Value), dirVec, allowExtend);
m_ed.WriteMessage(string.Format("\nCLOSEST PT: {0}", Utils.AcadUi.PtToStr(ptOnCurve)));
Utils.Db.MakePointEnt(Utils.Db.UcsToWcs(prPtRes.Value), 4, tr, m_db);
Utils.Db.MakePointEnt(ptOnCurve, 3, tr, m_db);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
OffsetCurves()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
// first prompt for offset distance (can be negative to go other direction)
PromptDoubleResult res = m_ed.GetDistance("\nOffset distance");
if (res.Status != PromptStatus.OK)
{
return;
}
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
DBObjectCollection newCurves = curve.GetOffsetCurves(res.Value);
// bump the color index of each curve returned so we can see how
// many there are.
int colorIndex = 1;
foreach (Entity ent in newCurves)
ent.ColorIndex = colorIndex++;
Utils.SymTbl.AddToCurrentSpace(newCurves, m_db, tr);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
/// <summary>
/// TBD: this one doesn't seem to work too well (or else I don't understand it)
/// </summary>
public void
OffsetCurvesGivenPlaneNormal()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
// first prompt for offset distance (can be negative to go other direction)
PromptDoubleResult res = m_ed.GetDistance("\nOffset distance");
if (res.Status != PromptStatus.OK)
{
return;
}
Vector3d planeVec = new Vector3d(1.0, 1.0, 1.0); // arbitrary plane normal
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
DBObjectCollection newCurves = curve.GetOffsetCurvesGivenPlaneNormal(planeVec, res.Value);
// bump the color index of each curve returned so we can see how
// many there are.
int colorIndex = 1;
foreach (Entity ent in newCurves)
ent.ColorIndex = colorIndex++;
Utils.SymTbl.AddToCurrentSpace(newCurves, m_db, tr);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
/// <summary>
/// To see how this one works, do the following:
/// 1) Draw curves in WCS
/// 2) Create a new UCS with X, Y, and Z axes rotated 45 degrees each
/// 3) Go to PLAN view in the new UCS
/// 4) Run the test. You should see red curves overlap the originals
/// 5) Do command UCS,World
/// 6) Go to PLAN view in the now established WCS
/// 7) The red projected curves should now be in a totally different plane
/// </summary>
public void
ProjectedCurve()
{
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
m_db = Utils.Db.GetCurDwg();
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
m_ed.WriteMessage("\nProjecting onto current UCS plane with VIEWDIR as projection direction...");
Plane planeToProjectOn = Utils.Db.GetUcsPlane(m_db);
Point3d tmpPt = (Point3d)AcadApp.GetSystemVariable("viewdir");
Vector3d projDir = Utils.Db.UcsToWcs(tmpPt.GetAsVector());
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
Curve projCurve = curve.GetProjectedCurve(planeToProjectOn, projDir);
projCurve.ColorIndex = 1;
Utils.SymTbl.AddToCurrentSpace(projCurve, m_db, tr);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
/// <summary>
/// See notes for ProjecteCurve() for how to demonstrate this.
/// </summary>
public void
OrthoProjectedCurve()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
Plane planeToProjectOn = Utils.Db.GetUcsPlane(m_db);
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
Curve projCurve = curve.GetOrthoProjectedCurve(planeToProjectOn);
projCurve.ColorIndex = 1;
Utils.SymTbl.AddToCurrentSpace(projCurve, m_db, tr);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
SplitCurvesParams()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
PrintParamInterval(curve);
DoubleCollection paramVals;
if (GetCurveParams(out paramVals) == false)
return;
try
{
DBObjectCollection splitCurves = curve.GetSplitCurves(paramVals);
int colorIndex = 1;
foreach (Entity ent in splitCurves)
ent.ColorIndex = colorIndex++;
Utils.SymTbl.AddToCurrentSpace(splitCurves, m_db, tr);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
SplitCurvesPoints()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
Point3dCollection pts;
if (GetCurvePoints(curve, out pts) == false)
return;
try
{
DBObjectCollection splitCurves = curve.GetSplitCurves(pts);
int colorIndex = 1;
foreach (Entity ent in splitCurves)
ent.ColorIndex = colorIndex++;
Utils.SymTbl.AddToCurrentSpace(splitCurves, m_db, tr);
}
catch (Autodesk.AutoCAD.Runtime.Exception e)
{
m_ed.WriteMessage("\nERROR: {0}", ((ErrorStatus)e.ErrorStatus).ToString());
}
tr.Commit();
}
}
}
public void
Spline()
{
m_db = Utils.Db.GetCurDwg();
m_ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = m_db.TransactionManager;
ObjectId curveId = ObjectId.Null;
Point3d pickPt = new Point3d();
while (GetCurveEntity(ref curveId, ref pickPt))
{
using (Autodesk.AutoCAD.DatabaseServices.Transaction tr = tm.StartTransaction())
{
Curve curve = (Curve)tr.GetObject(curveId, OpenMode.ForRead);
try
{
Spline newSpline = curve.Spline;
newSpline.ColorIndex = 1;
Utils.SymTbl.AddToCurrentSpace(newSpline, m_db, tr);
}