@mlightcad/data-model 1.7.30 → 1.7.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +224 -224
  3. package/dist/data-model.cjs +6 -6
  4. package/dist/data-model.js +14034 -13461
  5. package/lib/base/AcDbDxfFiler.d.ts.map +1 -1
  6. package/lib/base/AcDbDxfFiler.js +4 -1
  7. package/lib/base/AcDbDxfFiler.js.map +1 -1
  8. package/lib/converter/AcDbDxfConverter.d.ts.map +1 -1
  9. package/lib/converter/AcDbDxfConverter.js +19 -1
  10. package/lib/converter/AcDbDxfConverter.js.map +1 -1
  11. package/lib/converter/AcDbEntitiyConverter.d.ts.map +1 -1
  12. package/lib/converter/AcDbEntitiyConverter.js +31 -5
  13. package/lib/converter/AcDbEntitiyConverter.js.map +1 -1
  14. package/lib/database/AcDbDatabase.d.ts +38 -1
  15. package/lib/database/AcDbDatabase.d.ts.map +1 -1
  16. package/lib/database/AcDbDatabase.js +116 -1
  17. package/lib/database/AcDbDatabase.js.map +1 -1
  18. package/lib/database/AcDbSysVarManager.d.ts +5 -3
  19. package/lib/database/AcDbSysVarManager.d.ts.map +1 -1
  20. package/lib/database/AcDbSysVarManager.js +161 -5
  21. package/lib/database/AcDbSysVarManager.js.map +1 -1
  22. package/lib/database/AcDbSystemVariables.d.ts +25 -1
  23. package/lib/database/AcDbSystemVariables.d.ts.map +1 -1
  24. package/lib/database/AcDbSystemVariables.js +24 -0
  25. package/lib/database/AcDbSystemVariables.js.map +1 -1
  26. package/lib/entity/AcDbEntity.d.ts +26 -0
  27. package/lib/entity/AcDbEntity.d.ts.map +1 -1
  28. package/lib/entity/AcDbEntity.js +51 -12
  29. package/lib/entity/AcDbEntity.js.map +1 -1
  30. package/lib/entity/AcDbHatch.d.ts +84 -0
  31. package/lib/entity/AcDbHatch.d.ts.map +1 -1
  32. package/lib/entity/AcDbHatch.js +373 -11
  33. package/lib/entity/AcDbHatch.js.map +1 -1
  34. package/lib/entity/AcDbText.d.ts +46 -1
  35. package/lib/entity/AcDbText.d.ts.map +1 -1
  36. package/lib/entity/AcDbText.js +133 -3
  37. package/lib/entity/AcDbText.js.map +1 -1
  38. package/lib/misc/AcDbConstants.d.ts +20 -0
  39. package/lib/misc/AcDbConstants.d.ts.map +1 -1
  40. package/lib/misc/AcDbConstants.js +20 -0
  41. package/lib/misc/AcDbConstants.js.map +1 -1
  42. package/lib/misc/AcDbDataGenerator.js +2 -2
  43. package/lib/misc/AcDbDataGenerator.js.map +1 -1
  44. package/lib/misc/pat/AcDbPatPredefined.d.ts.map +1 -1
  45. package/lib/misc/pat/AcDbPatPredefined.js +85 -105
  46. package/lib/misc/pat/AcDbPatPredefined.js.map +1 -1
  47. package/lib/misc/pat/AcDbPatSvgRenderer.d.ts +170 -10
  48. package/lib/misc/pat/AcDbPatSvgRenderer.d.ts.map +1 -1
  49. package/lib/misc/pat/AcDbPatSvgRenderer.js +280 -17
  50. package/lib/misc/pat/AcDbPatSvgRenderer.js.map +1 -1
  51. package/package.json +4 -4
@@ -6,17 +6,7 @@ export var AcDbPredefinedAcadPat = {
6
6
  {
7
7
  name: 'SOLID',
8
8
  description: '',
9
- lines: [
10
- {
11
- angle: 45,
12
- originX: 0,
13
- originY: 0,
14
- deltaX: 0,
15
- deltaY: 0.125,
16
- dashes: [],
17
- sourceLine: 21
18
- }
19
- ]
9
+ lines: []
20
10
  },
21
11
  {
22
12
  name: 'ANGLE',
@@ -2839,22 +2829,12 @@ export var AcDbPredefinedAcadIsoPat = {
2839
2829
  patterns: [
2840
2830
  {
2841
2831
  name: 'SOLID',
2842
- description: 'ʵ�����',
2843
- lines: [
2844
- {
2845
- angle: 45,
2846
- originX: 0,
2847
- originY: 0,
2848
- deltaX: 0,
2849
- deltaY: 0.125,
2850
- dashes: [],
2851
- sourceLine: 18
2852
- }
2853
- ]
2832
+ description: '',
2833
+ lines: []
2854
2834
  },
2855
2835
  {
2856
2836
  name: 'ANGLE',
2857
- description: '�Ǹ�',
2837
+ description: '',
2858
2838
  lines: [
2859
2839
  {
2860
2840
  angle: 0,
@@ -2878,7 +2858,7 @@ export var AcDbPredefinedAcadIsoPat = {
2878
2858
  },
2879
2859
  {
2880
2860
  name: 'ANSI31',
2881
- description: 'ANSI ����ש��ʯ',
2861
+ description: '',
2882
2862
  lines: [
2883
2863
  {
2884
2864
  angle: 45,
@@ -2893,7 +2873,7 @@ export var AcDbPredefinedAcadIsoPat = {
2893
2873
  },
2894
2874
  {
2895
2875
  name: 'ANSI32',
2896
- description: 'ANSI ��',
2876
+ description: '',
2897
2877
  lines: [
2898
2878
  {
2899
2879
  angle: 45,
@@ -2917,7 +2897,7 @@ export var AcDbPredefinedAcadIsoPat = {
2917
2897
  },
2918
2898
  {
2919
2899
  name: 'ANSI33',
2920
- description: 'ANSI ��ͭ����ͭ����ͭ',
2900
+ description: '',
2921
2901
  lines: [
2922
2902
  {
2923
2903
  angle: 45,
@@ -2941,7 +2921,7 @@ export var AcDbPredefinedAcadIsoPat = {
2941
2921
  },
2942
2922
  {
2943
2923
  name: 'ANSI34',
2944
- description: 'ANSI ���Ϻ���',
2924
+ description: '',
2945
2925
  lines: [
2946
2926
  {
2947
2927
  angle: 45,
@@ -2983,7 +2963,7 @@ export var AcDbPredefinedAcadIsoPat = {
2983
2963
  },
2984
2964
  {
2985
2965
  name: 'ANSI35',
2986
- description: 'ANSI �ͻ�ש���ͻ����',
2966
+ description: '',
2987
2967
  lines: [
2988
2968
  {
2989
2969
  angle: 45,
@@ -3007,7 +2987,7 @@ export var AcDbPredefinedAcadIsoPat = {
3007
2987
  },
3008
2988
  {
3009
2989
  name: 'ANSI36',
3010
- description: 'ANSI ����ʯ�����ҺͲ���',
2990
+ description: '',
3011
2991
  lines: [
3012
2992
  {
3013
2993
  angle: 45,
@@ -3022,7 +3002,7 @@ export var AcDbPredefinedAcadIsoPat = {
3022
3002
  },
3023
3003
  {
3024
3004
  name: 'ANSI37',
3025
- description: 'ANSI Ǧ��п��þ����/��/���Ե��',
3005
+ description: '',
3026
3006
  lines: [
3027
3007
  {
3028
3008
  angle: 45,
@@ -3046,7 +3026,7 @@ export var AcDbPredefinedAcadIsoPat = {
3046
3026
  },
3047
3027
  {
3048
3028
  name: 'ANSI38',
3049
- description: 'ANSI ��',
3029
+ description: '',
3050
3030
  lines: [
3051
3031
  {
3052
3032
  angle: 45,
@@ -3070,7 +3050,7 @@ export var AcDbPredefinedAcadIsoPat = {
3070
3050
  },
3071
3051
  {
3072
3052
  name: 'AR-B816',
3073
- description: '8x16 ��ש˳��',
3053
+ description: '',
3074
3054
  lines: [
3075
3055
  {
3076
3056
  angle: 0,
@@ -3094,7 +3074,7 @@ export var AcDbPredefinedAcadIsoPat = {
3094
3074
  },
3095
3075
  {
3096
3076
  name: 'AR-B816C',
3097
- description: '8x16 ��ש˳�����û���ӷ�',
3077
+ description: '',
3098
3078
  lines: [
3099
3079
  {
3100
3080
  angle: 0,
@@ -3136,7 +3116,7 @@ export var AcDbPredefinedAcadIsoPat = {
3136
3116
  },
3137
3117
  {
3138
3118
  name: 'AR-B88',
3139
- description: '8x8 ��ש˳��',
3119
+ description: '',
3140
3120
  lines: [
3141
3121
  {
3142
3122
  angle: 0,
@@ -3160,7 +3140,7 @@ export var AcDbPredefinedAcadIsoPat = {
3160
3140
  },
3161
3141
  {
3162
3142
  name: 'AR-BRELM',
3163
- description: '��׼ש��Ӣʽ�������û���ӷ�',
3143
+ description: '',
3164
3144
  lines: [
3165
3145
  {
3166
3146
  angle: 0,
@@ -3238,7 +3218,7 @@ export var AcDbPredefinedAcadIsoPat = {
3238
3218
  },
3239
3219
  {
3240
3220
  name: 'AR-BRSTD',
3241
- description: '��׼ש��˳��',
3221
+ description: '',
3242
3222
  lines: [
3243
3223
  {
3244
3224
  angle: 0,
@@ -3262,7 +3242,7 @@ export var AcDbPredefinedAcadIsoPat = {
3262
3242
  },
3263
3243
  {
3264
3244
  name: 'AR-CONC',
3265
- description: '����ĵ��ʯͷͼ��',
3245
+ description: '',
3266
3246
  lines: [
3267
3247
  {
3268
3248
  angle: 50,
@@ -3385,7 +3365,7 @@ export var AcDbPredefinedAcadIsoPat = {
3385
3365
  },
3386
3366
  {
3387
3367
  name: 'AR-HBONE',
3388
- description: '��׼��ש���������ͼ�� @ 45 �Ƚ�',
3368
+ description: '',
3389
3369
  lines: [
3390
3370
  {
3391
3371
  angle: 45,
@@ -3409,7 +3389,7 @@ export var AcDbPredefinedAcadIsoPat = {
3409
3389
  },
3410
3390
  {
3411
3391
  name: 'AR-PARQ1',
3412
- description: '2x12 ��ľ�ذ�: 12x12 ��ͼ��',
3392
+ description: '',
3413
3393
  lines: [
3414
3394
  {
3415
3395
  angle: 90,
@@ -3541,7 +3521,7 @@ export var AcDbPredefinedAcadIsoPat = {
3541
3521
  },
3542
3522
  {
3543
3523
  name: 'AR-RROOF',
3544
- description: '�ݶ�ľ��ͼ��',
3524
+ description: '',
3545
3525
  lines: [
3546
3526
  {
3547
3527
  angle: 0,
@@ -3574,7 +3554,7 @@ export var AcDbPredefinedAcadIsoPat = {
3574
3554
  },
3575
3555
  {
3576
3556
  name: 'AR-RSHKE',
3577
- description: '�ݶ�ʵľ��ͼ��',
3557
+ description: '',
3578
3558
  lines: [
3579
3559
  {
3580
3560
  angle: 0,
@@ -3661,7 +3641,7 @@ export var AcDbPredefinedAcadIsoPat = {
3661
3641
  },
3662
3642
  {
3663
3643
  name: 'AR-SAND',
3664
- description: '����ĵ�ͼ��',
3644
+ description: '',
3665
3645
  lines: [
3666
3646
  {
3667
3647
  angle: 37.5,
@@ -3703,7 +3683,7 @@ export var AcDbPredefinedAcadIsoPat = {
3703
3683
  },
3704
3684
  {
3705
3685
  name: 'BOX',
3706
- description: '����',
3686
+ description: '',
3707
3687
  lines: [
3708
3688
  {
3709
3689
  angle: 90,
@@ -3781,7 +3761,7 @@ export var AcDbPredefinedAcadIsoPat = {
3781
3761
  },
3782
3762
  {
3783
3763
  name: 'BRASS',
3784
- description: '��ͭ����',
3764
+ description: '',
3785
3765
  lines: [
3786
3766
  {
3787
3767
  angle: 0,
@@ -3805,7 +3785,7 @@ export var AcDbPredefinedAcadIsoPat = {
3805
3785
  },
3806
3786
  {
3807
3787
  name: 'BRICK',
3808
- description: 'שʯ���͵ı���',
3788
+ description: '',
3809
3789
  lines: [
3810
3790
  {
3811
3791
  angle: 0,
@@ -3838,7 +3818,7 @@ export var AcDbPredefinedAcadIsoPat = {
3838
3818
  },
3839
3819
  {
3840
3820
  name: 'BRSTONE',
3841
- description: 'ש��ʯ',
3821
+ description: '',
3842
3822
  lines: [
3843
3823
  {
3844
3824
  angle: 0,
@@ -3916,7 +3896,7 @@ export var AcDbPredefinedAcadIsoPat = {
3916
3896
  },
3917
3897
  {
3918
3898
  name: 'CLAY',
3919
- description: 'ճ������',
3899
+ description: '',
3920
3900
  lines: [
3921
3901
  {
3922
3902
  angle: 0,
@@ -3958,7 +3938,7 @@ export var AcDbPredefinedAcadIsoPat = {
3958
3938
  },
3959
3939
  {
3960
3940
  name: 'CORK',
3961
- description: '��ľ����',
3941
+ description: '',
3962
3942
  lines: [
3963
3943
  {
3964
3944
  angle: 0,
@@ -4000,7 +3980,7 @@ export var AcDbPredefinedAcadIsoPat = {
4000
3980
  },
4001
3981
  {
4002
3982
  name: 'CROSS',
4003
- description: 'һϵ��ʮ����',
3983
+ description: '',
4004
3984
  lines: [
4005
3985
  {
4006
3986
  angle: 0,
@@ -4024,7 +4004,7 @@ export var AcDbPredefinedAcadIsoPat = {
4024
4004
  },
4025
4005
  {
4026
4006
  name: 'DASH',
4027
- description: '����',
4007
+ description: '',
4028
4008
  lines: [
4029
4009
  {
4030
4010
  angle: 0,
@@ -4039,7 +4019,7 @@ export var AcDbPredefinedAcadIsoPat = {
4039
4019
  },
4040
4020
  {
4041
4021
  name: 'DOLMIT',
4042
- description: '�ؿ��Ҳ�',
4022
+ description: '',
4043
4023
  lines: [
4044
4024
  {
4045
4025
  angle: 0,
@@ -4063,7 +4043,7 @@ export var AcDbPredefinedAcadIsoPat = {
4063
4043
  },
4064
4044
  {
4065
4045
  name: 'DOTS',
4066
- description: 'һϵ�е�',
4046
+ description: '',
4067
4047
  lines: [
4068
4048
  {
4069
4049
  angle: 0,
@@ -4078,7 +4058,7 @@ export var AcDbPredefinedAcadIsoPat = {
4078
4058
  },
4079
4059
  {
4080
4060
  name: 'EARTH',
4081
- description: '����',
4061
+ description: '',
4082
4062
  lines: [
4083
4063
  {
4084
4064
  angle: 0,
@@ -4138,7 +4118,7 @@ export var AcDbPredefinedAcadIsoPat = {
4138
4118
  },
4139
4119
  {
4140
4120
  name: 'ESCHER',
4141
- description: 'Escher ͼ��',
4121
+ description: '',
4142
4122
  lines: [
4143
4123
  {
4144
4124
  angle: 60,
@@ -4333,7 +4313,7 @@ export var AcDbPredefinedAcadIsoPat = {
4333
4313
  },
4334
4314
  {
4335
4315
  name: 'FLEX',
4336
- description: '���Բ���',
4316
+ description: '',
4337
4317
  lines: [
4338
4318
  {
4339
4319
  angle: 0,
@@ -4357,7 +4337,7 @@ export var AcDbPredefinedAcadIsoPat = {
4357
4337
  },
4358
4338
  {
4359
4339
  name: 'GOST_GLASS',
4360
- description: '��������',
4340
+ description: '',
4361
4341
  lines: [
4362
4342
  {
4363
4343
  angle: 45,
@@ -4390,7 +4370,7 @@ export var AcDbPredefinedAcadIsoPat = {
4390
4370
  },
4391
4371
  {
4392
4372
  name: 'GOST_WOOD',
4393
- description: 'ľ�IJ���',
4373
+ description: '',
4394
4374
  lines: [
4395
4375
  {
4396
4376
  angle: 90,
@@ -4423,7 +4403,7 @@ export var AcDbPredefinedAcadIsoPat = {
4423
4403
  },
4424
4404
  {
4425
4405
  name: 'GOST_GROUND',
4426
- description: '����',
4406
+ description: '',
4427
4407
  lines: [
4428
4408
  {
4429
4409
  angle: 45,
@@ -4456,7 +4436,7 @@ export var AcDbPredefinedAcadIsoPat = {
4456
4436
  },
4457
4437
  {
4458
4438
  name: 'GRASS',
4459
- description: '�ݵ�',
4439
+ description: '',
4460
4440
  lines: [
4461
4441
  {
4462
4442
  angle: 90,
@@ -4489,7 +4469,7 @@ export var AcDbPredefinedAcadIsoPat = {
4489
4469
  },
4490
4470
  {
4491
4471
  name: 'GRATE',
4492
- description: '��դ����',
4472
+ description: '',
4493
4473
  lines: [
4494
4474
  {
4495
4475
  angle: 0,
@@ -4513,7 +4493,7 @@ export var AcDbPredefinedAcadIsoPat = {
4513
4493
  },
4514
4494
  {
4515
4495
  name: 'GRAVEL',
4516
- description: 'ɳ��ͼ��',
4496
+ description: '',
4517
4497
  lines: [
4518
4498
  {
4519
4499
  angle: 228.0127875,
@@ -4888,7 +4868,7 @@ export var AcDbPredefinedAcadIsoPat = {
4888
4868
  },
4889
4869
  {
4890
4870
  name: 'HEX',
4891
- description: '������',
4871
+ description: '',
4892
4872
  lines: [
4893
4873
  {
4894
4874
  angle: 0,
@@ -4921,7 +4901,7 @@ export var AcDbPredefinedAcadIsoPat = {
4921
4901
  },
4922
4902
  {
4923
4903
  name: 'HONEY',
4924
- description: '�䳲ͼ��',
4904
+ description: '',
4925
4905
  lines: [
4926
4906
  {
4927
4907
  angle: 0,
@@ -4954,7 +4934,7 @@ export var AcDbPredefinedAcadIsoPat = {
4954
4934
  },
4955
4935
  {
4956
4936
  name: 'HOUND',
4957
- description: 'Ȯ������ͼ��',
4937
+ description: '',
4958
4938
  lines: [
4959
4939
  {
4960
4940
  angle: 0,
@@ -4978,7 +4958,7 @@ export var AcDbPredefinedAcadIsoPat = {
4978
4958
  },
4979
4959
  {
4980
4960
  name: 'INSUL',
4981
- description: '��Ե����',
4961
+ description: '',
4982
4962
  lines: [
4983
4963
  {
4984
4964
  angle: 0,
@@ -5011,7 +4991,7 @@ export var AcDbPredefinedAcadIsoPat = {
5011
4991
  },
5012
4992
  {
5013
4993
  name: 'ACAD_ISO02W100',
5014
- description: '����',
4994
+ description: '',
5015
4995
  lines: [
5016
4996
  {
5017
4997
  angle: 0,
@@ -5026,7 +5006,7 @@ export var AcDbPredefinedAcadIsoPat = {
5026
5006
  },
5027
5007
  {
5028
5008
  name: 'ACAD_ISO03W100',
5029
- description: '�����ո���',
5009
+ description: '',
5030
5010
  lines: [
5031
5011
  {
5032
5012
  angle: 0,
@@ -5041,7 +5021,7 @@ export var AcDbPredefinedAcadIsoPat = {
5041
5021
  },
5042
5022
  {
5043
5023
  name: 'ACAD_ISO04W100',
5044
- description: '����������',
5024
+ description: '',
5045
5025
  lines: [
5046
5026
  {
5047
5027
  angle: 0,
@@ -5056,7 +5036,7 @@ export var AcDbPredefinedAcadIsoPat = {
5056
5036
  },
5057
5037
  {
5058
5038
  name: 'ACAD_ISO05W100',
5059
- description: '������˫����',
5039
+ description: '',
5060
5040
  lines: [
5061
5041
  {
5062
5042
  angle: 0,
@@ -5071,7 +5051,7 @@ export var AcDbPredefinedAcadIsoPat = {
5071
5051
  },
5072
5052
  {
5073
5053
  name: 'ACAD_ISO06W100',
5074
- description: '������������',
5054
+ description: '',
5075
5055
  lines: [
5076
5056
  {
5077
5057
  angle: 0,
@@ -5095,7 +5075,7 @@ export var AcDbPredefinedAcadIsoPat = {
5095
5075
  },
5096
5076
  {
5097
5077
  name: 'ACAD_ISO07W100',
5098
- description: '����',
5078
+ description: '',
5099
5079
  lines: [
5100
5080
  {
5101
5081
  angle: 0,
@@ -5110,7 +5090,7 @@ export var AcDbPredefinedAcadIsoPat = {
5110
5090
  },
5111
5091
  {
5112
5092
  name: 'ACAD_ISO08W100',
5113
- description: '�������̻���',
5093
+ description: '',
5114
5094
  lines: [
5115
5095
  {
5116
5096
  angle: 0,
@@ -5125,7 +5105,7 @@ export var AcDbPredefinedAcadIsoPat = {
5125
5105
  },
5126
5106
  {
5127
5107
  name: 'ACAD_ISO09W100',
5128
- description: '������˫�̻���',
5108
+ description: '',
5129
5109
  lines: [
5130
5110
  {
5131
5111
  angle: 0,
@@ -5140,7 +5120,7 @@ export var AcDbPredefinedAcadIsoPat = {
5140
5120
  },
5141
5121
  {
5142
5122
  name: 'ACAD_ISO10W100',
5143
- description: '��������',
5123
+ description: '',
5144
5124
  lines: [
5145
5125
  {
5146
5126
  angle: 0,
@@ -5155,7 +5135,7 @@ export var AcDbPredefinedAcadIsoPat = {
5155
5135
  },
5156
5136
  {
5157
5137
  name: 'ACAD_ISO11W100',
5158
- description: '˫��������',
5138
+ description: '',
5159
5139
  lines: [
5160
5140
  {
5161
5141
  angle: 0,
@@ -5170,7 +5150,7 @@ export var AcDbPredefinedAcadIsoPat = {
5170
5150
  },
5171
5151
  {
5172
5152
  name: 'ACAD_ISO12W100',
5173
- description: '����˫����',
5153
+ description: '',
5174
5154
  lines: [
5175
5155
  {
5176
5156
  angle: 0,
@@ -5185,7 +5165,7 @@ export var AcDbPredefinedAcadIsoPat = {
5185
5165
  },
5186
5166
  {
5187
5167
  name: 'ACAD_ISO13W100',
5188
- description: '˫����˫����',
5168
+ description: '',
5189
5169
  lines: [
5190
5170
  {
5191
5171
  angle: 0,
@@ -5209,7 +5189,7 @@ export var AcDbPredefinedAcadIsoPat = {
5209
5189
  },
5210
5190
  {
5211
5191
  name: 'ACAD_ISO14W100',
5212
- description: '����������',
5192
+ description: '',
5213
5193
  lines: [
5214
5194
  {
5215
5195
  angle: 0,
@@ -5233,7 +5213,7 @@ export var AcDbPredefinedAcadIsoPat = {
5233
5213
  },
5234
5214
  {
5235
5215
  name: 'ACAD_ISO15W100',
5236
- description: '˫����������',
5216
+ description: '',
5237
5217
  lines: [
5238
5218
  {
5239
5219
  angle: 0,
@@ -5257,7 +5237,7 @@ export var AcDbPredefinedAcadIsoPat = {
5257
5237
  },
5258
5238
  {
5259
5239
  name: 'JIS_LC_20',
5260
- description: 'LC JIS A 0150(@20)',
5240
+ description: '',
5261
5241
  lines: [
5262
5242
  {
5263
5243
  angle: 45,
@@ -5281,7 +5261,7 @@ export var AcDbPredefinedAcadIsoPat = {
5281
5261
  },
5282
5262
  {
5283
5263
  name: 'JIS_LC_20A',
5284
- description: 'LC JIS A 0150(@20��?)',
5264
+ description: '',
5285
5265
  lines: [
5286
5266
  {
5287
5267
  angle: 45,
@@ -5305,7 +5285,7 @@ export var AcDbPredefinedAcadIsoPat = {
5305
5285
  },
5306
5286
  {
5307
5287
  name: 'JIS_LC_8',
5308
- description: 'LC JIS A 0150(@8)',
5288
+ description: '',
5309
5289
  lines: [
5310
5290
  {
5311
5291
  angle: 45,
@@ -5329,7 +5309,7 @@ export var AcDbPredefinedAcadIsoPat = {
5329
5309
  },
5330
5310
  {
5331
5311
  name: 'JIS_LC_8A',
5332
- description: 'LC JIS A 0150(@8��?)',
5312
+ description: '',
5333
5313
  lines: [
5334
5314
  {
5335
5315
  angle: 45,
@@ -5353,7 +5333,7 @@ export var AcDbPredefinedAcadIsoPat = {
5353
5333
  },
5354
5334
  {
5355
5335
  name: 'JIS_RC_10',
5356
- description: 'RC JIS A 0150(@10)',
5336
+ description: '',
5357
5337
  lines: [
5358
5338
  {
5359
5339
  angle: 45,
@@ -5386,7 +5366,7 @@ export var AcDbPredefinedAcadIsoPat = {
5386
5366
  },
5387
5367
  {
5388
5368
  name: 'JIS_RC_15',
5389
- description: 'RC JIS A 0150(@15)',
5369
+ description: '',
5390
5370
  lines: [
5391
5371
  {
5392
5372
  angle: 45,
@@ -5419,7 +5399,7 @@ export var AcDbPredefinedAcadIsoPat = {
5419
5399
  },
5420
5400
  {
5421
5401
  name: 'JIS_RC_18',
5422
- description: 'RC JIS A 0150(@18)',
5402
+ description: '',
5423
5403
  lines: [
5424
5404
  {
5425
5405
  angle: 45,
@@ -5452,7 +5432,7 @@ export var AcDbPredefinedAcadIsoPat = {
5452
5432
  },
5453
5433
  {
5454
5434
  name: 'JIS_RC_30',
5455
- description: 'RC JIS A 0150(@30)',
5435
+ description: '',
5456
5436
  lines: [
5457
5437
  {
5458
5438
  angle: 45,
@@ -5485,7 +5465,7 @@ export var AcDbPredefinedAcadIsoPat = {
5485
5465
  },
5486
5466
  {
5487
5467
  name: 'JIS_STN_1E',
5488
- description: 'STONE JIS A 0150(@1)',
5468
+ description: '',
5489
5469
  lines: [
5490
5470
  {
5491
5471
  angle: 45,
@@ -5509,7 +5489,7 @@ export var AcDbPredefinedAcadIsoPat = {
5509
5489
  },
5510
5490
  {
5511
5491
  name: 'JIS_STN_2.5',
5512
- description: 'STONE JIS A 0150(@2.5)',
5492
+ description: '',
5513
5493
  lines: [
5514
5494
  {
5515
5495
  angle: 45,
@@ -5533,7 +5513,7 @@ export var AcDbPredefinedAcadIsoPat = {
5533
5513
  },
5534
5514
  {
5535
5515
  name: 'JIS_WOOD',
5536
- description: 'WOOD JIS A 0150',
5516
+ description: '',
5537
5517
  lines: [
5538
5518
  {
5539
5519
  angle: 45,
@@ -5548,7 +5528,7 @@ export var AcDbPredefinedAcadIsoPat = {
5548
5528
  },
5549
5529
  {
5550
5530
  name: 'LINE',
5551
- description: 'ƽ��ˮƽ��',
5531
+ description: '',
5552
5532
  lines: [
5553
5533
  {
5554
5534
  angle: 0,
@@ -5563,7 +5543,7 @@ export var AcDbPredefinedAcadIsoPat = {
5563
5543
  },
5564
5544
  {
5565
5545
  name: 'MUDST',
5566
- description: '��ɳ',
5546
+ description: '',
5567
5547
  lines: [
5568
5548
  {
5569
5549
  angle: 0,
@@ -5578,7 +5558,7 @@ export var AcDbPredefinedAcadIsoPat = {
5578
5558
  },
5579
5559
  {
5580
5560
  name: 'NET',
5581
- description: 'ˮƽ/��ֱդ��',
5561
+ description: '',
5582
5562
  lines: [
5583
5563
  {
5584
5564
  angle: 0,
@@ -5602,7 +5582,7 @@ export var AcDbPredefinedAcadIsoPat = {
5602
5582
  },
5603
5583
  {
5604
5584
  name: 'NET3',
5605
- description: '��״ͼ�� 0-60-120',
5585
+ description: '',
5606
5586
  lines: [
5607
5587
  {
5608
5588
  angle: 0,
@@ -5635,7 +5615,7 @@ export var AcDbPredefinedAcadIsoPat = {
5635
5615
  },
5636
5616
  {
5637
5617
  name: 'PLAST',
5638
- description: '���ϲ���',
5618
+ description: '',
5639
5619
  lines: [
5640
5620
  {
5641
5621
  angle: 0,
@@ -5668,7 +5648,7 @@ export var AcDbPredefinedAcadIsoPat = {
5668
5648
  },
5669
5649
  {
5670
5650
  name: 'PLASTI',
5671
- description: '���ϲ���',
5651
+ description: '',
5672
5652
  lines: [
5673
5653
  {
5674
5654
  angle: 0,
@@ -5710,7 +5690,7 @@ export var AcDbPredefinedAcadIsoPat = {
5710
5690
  },
5711
5691
  {
5712
5692
  name: 'SACNCR',
5713
- description: '������',
5693
+ description: '',
5714
5694
  lines: [
5715
5695
  {
5716
5696
  angle: 45,
@@ -5734,7 +5714,7 @@ export var AcDbPredefinedAcadIsoPat = {
5734
5714
  },
5735
5715
  {
5736
5716
  name: 'SQUARE',
5737
- description: '���������',
5717
+ description: '',
5738
5718
  lines: [
5739
5719
  {
5740
5720
  angle: 0,
@@ -5758,7 +5738,7 @@ export var AcDbPredefinedAcadIsoPat = {
5758
5738
  },
5759
5739
  {
5760
5740
  name: 'STARS',
5761
- description: '���',
5741
+ description: '',
5762
5742
  lines: [
5763
5743
  {
5764
5744
  angle: 0,
@@ -5791,7 +5771,7 @@ export var AcDbPredefinedAcadIsoPat = {
5791
5771
  },
5792
5772
  {
5793
5773
  name: 'STEEL',
5794
- description: '�ֲ���',
5774
+ description: '',
5795
5775
  lines: [
5796
5776
  {
5797
5777
  angle: 45,
@@ -5815,7 +5795,7 @@ export var AcDbPredefinedAcadIsoPat = {
5815
5795
  },
5816
5796
  {
5817
5797
  name: 'SWAMP',
5818
- description: '����ش�',
5798
+ description: '',
5819
5799
  lines: [
5820
5800
  {
5821
5801
  angle: 0,
@@ -5875,7 +5855,7 @@ export var AcDbPredefinedAcadIsoPat = {
5875
5855
  },
5876
5856
  {
5877
5857
  name: 'TRANS',
5878
- description: '�ȴ��ݲ���',
5858
+ description: '',
5879
5859
  lines: [
5880
5860
  {
5881
5861
  angle: 0,
@@ -5899,7 +5879,7 @@ export var AcDbPredefinedAcadIsoPat = {
5899
5879
  },
5900
5880
  {
5901
5881
  name: 'TRIANG',
5902
- description: '�ȱ�������',
5882
+ description: '',
5903
5883
  lines: [
5904
5884
  {
5905
5885
  angle: 60,
@@ -5932,7 +5912,7 @@ export var AcDbPredefinedAcadIsoPat = {
5932
5912
  },
5933
5913
  {
5934
5914
  name: 'ZIGZAG',
5935
- description: '¥��Ч��',
5915
+ description: '',
5936
5916
  lines: [
5937
5917
  {
5938
5918
  angle: 0,