mol_plot_all 1.2.1184 → 1.2.1186

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.
package/web.js CHANGED
@@ -2701,8 +2701,8 @@ var $;
2701
2701
  attr(){
2702
2702
  return {
2703
2703
  ...(super.attr()),
2704
- "viewBox": (this?.view_box()),
2705
- "preserveAspectRatio": (this?.aspect())
2704
+ "viewBox": (this.view_box()),
2705
+ "preserveAspectRatio": (this.aspect())
2706
2706
  };
2707
2707
  }
2708
2708
  };
@@ -2976,11 +2976,11 @@ var $;
2976
2976
  event(){
2977
2977
  return {
2978
2978
  ...(super.event()),
2979
- "pointerdown": (next) => (this?.event_start(next)),
2980
- "pointermove": (next) => (this?.event_move(next)),
2981
- "pointerup": (next) => (this?.event_end(next)),
2982
- "pointerleave": (next) => (this?.event_leave(next)),
2983
- "wheel": (next) => (this?.event_wheel(next))
2979
+ "pointerdown": (next) => (this.event_start(next)),
2980
+ "pointermove": (next) => (this.event_move(next)),
2981
+ "pointerup": (next) => (this.event_end(next)),
2982
+ "pointerleave": (next) => (this.event_leave(next)),
2983
+ "wheel": (next) => (this.event_wheel(next))
2984
2984
  };
2985
2985
  }
2986
2986
  };
@@ -3270,11 +3270,11 @@ var $;
3270
3270
  ;
3271
3271
  ($.$mol_plot_pane) = class $mol_plot_pane extends ($.$mol_svg_root) {
3272
3272
  gap_x(){
3273
- const obj = new this.$.$mol_vector_range((this?.gap_left()), (this?.gap_right()));
3273
+ const obj = new this.$.$mol_vector_range((this.gap_left()), (this.gap_right()));
3274
3274
  return obj;
3275
3275
  }
3276
3276
  gap_y(){
3277
- const obj = new this.$.$mol_vector_range((this?.gap_bottom()), (this?.gap_top()));
3277
+ const obj = new this.$.$mol_vector_range((this.gap_bottom()), (this.gap_top()));
3278
3278
  return obj;
3279
3279
  }
3280
3280
  shift_limit_x(){
@@ -3316,17 +3316,17 @@ var $;
3316
3316
  return [];
3317
3317
  }
3318
3318
  graphs_positioned(){
3319
- return (this?.graphs());
3319
+ return (this.graphs());
3320
3320
  }
3321
3321
  graphs_visible(){
3322
- return (this?.graphs_positioned());
3322
+ return (this.graphs_positioned());
3323
3323
  }
3324
3324
  zoom(next){
3325
3325
  if(next !== undefined) return next;
3326
3326
  return 1;
3327
3327
  }
3328
3328
  cursor_position(){
3329
- return (this?.Touch()?.pointer_center());
3329
+ return (this.Touch().pointer_center());
3330
3330
  }
3331
3331
  allow_draw(){
3332
3332
  return true;
@@ -3338,10 +3338,10 @@ var $;
3338
3338
  return true;
3339
3339
  }
3340
3340
  action_type(){
3341
- return (this?.Touch()?.action_type());
3341
+ return (this.Touch().action_type());
3342
3342
  }
3343
3343
  action_point(){
3344
- return (this?.Touch()?.action_point());
3344
+ return (this.Touch().action_point());
3345
3345
  }
3346
3346
  draw_start(next){
3347
3347
  if(next !== undefined) return next;
@@ -3357,14 +3357,14 @@ var $;
3357
3357
  }
3358
3358
  Touch(){
3359
3359
  const obj = new this.$.$mol_touch();
3360
- (obj.zoom) = (next) => ((this?.zoom(next)));
3361
- (obj.pan) = (next) => ((this?.shift(next)));
3362
- (obj.allow_draw) = () => ((this?.allow_draw()));
3363
- (obj.allow_pan) = () => ((this?.allow_pan()));
3364
- (obj.allow_zoom) = () => ((this?.allow_zoom()));
3365
- (obj.draw_start) = (next) => ((this?.draw_start(next)));
3366
- (obj.draw) = (next) => ((this?.draw(next)));
3367
- (obj.draw_end) = (next) => ((this?.draw_end(next)));
3360
+ (obj.zoom) = (next) => ((this.zoom(next)));
3361
+ (obj.pan) = (next) => ((this.shift(next)));
3362
+ (obj.allow_draw) = () => ((this.allow_draw()));
3363
+ (obj.allow_pan) = () => ((this.allow_pan()));
3364
+ (obj.allow_zoom) = () => ((this.allow_zoom()));
3365
+ (obj.draw_start) = (next) => ((this.draw_start(next)));
3366
+ (obj.draw) = (next) => ((this.draw(next)));
3367
+ (obj.draw_end) = (next) => ((this.draw_end(next)));
3368
3368
  return obj;
3369
3369
  }
3370
3370
  aspect(){
@@ -3385,23 +3385,23 @@ var $;
3385
3385
  return 24;
3386
3386
  }
3387
3387
  gap_left(){
3388
- return (this?.gap_hor());
3388
+ return (this.gap_hor());
3389
3389
  }
3390
3390
  gap_right(){
3391
- return (this?.gap_hor());
3391
+ return (this.gap_hor());
3392
3392
  }
3393
3393
  gap_top(){
3394
- return (this?.gap_vert());
3394
+ return (this.gap_vert());
3395
3395
  }
3396
3396
  gap_bottom(){
3397
- return (this?.gap_vert());
3397
+ return (this.gap_vert());
3398
3398
  }
3399
3399
  gap(){
3400
- const obj = new this.$.$mol_vector_2d((this?.gap_x()), (this?.gap_y()));
3400
+ const obj = new this.$.$mol_vector_2d((this.gap_x()), (this.gap_y()));
3401
3401
  return obj;
3402
3402
  }
3403
3403
  shift_limit(){
3404
- const obj = new this.$.$mol_vector_2d((this?.shift_limit_x()), (this?.shift_limit_y()));
3404
+ const obj = new this.$.$mol_vector_2d((this.shift_limit_x()), (this.shift_limit_y()));
3405
3405
  return obj;
3406
3406
  }
3407
3407
  shift_default(){
@@ -3414,7 +3414,7 @@ var $;
3414
3414
  return obj;
3415
3415
  }
3416
3416
  scale_limit(){
3417
- const obj = new this.$.$mol_vector_2d((this?.scale_limit_x()), (this?.scale_limit_y()));
3417
+ const obj = new this.$.$mol_vector_2d((this.scale_limit_x()), (this.scale_limit_y()));
3418
3418
  return obj;
3419
3419
  }
3420
3420
  scale_default(){
@@ -3443,21 +3443,21 @@ var $;
3443
3443
  return obj;
3444
3444
  }
3445
3445
  dimensions(){
3446
- const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
3446
+ const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
3447
3447
  return obj;
3448
3448
  }
3449
3449
  dimensions_viewport(){
3450
- const obj = new this.$.$mol_vector_2d((this?.dimensions_viewport_x()), (this?.dimensions_viewport_y()));
3450
+ const obj = new this.$.$mol_vector_2d((this.dimensions_viewport_x()), (this.dimensions_viewport_y()));
3451
3451
  return obj;
3452
3452
  }
3453
3453
  sub(){
3454
- return (this?.graphs_sorted());
3454
+ return (this.graphs_sorted());
3455
3455
  }
3456
3456
  graphs_colored(){
3457
- return (this?.graphs_visible());
3457
+ return (this.graphs_visible());
3458
3458
  }
3459
3459
  plugins(){
3460
- return [...(super.plugins()), (this?.Touch())];
3460
+ return [...(super.plugins()), (this.Touch())];
3461
3461
  }
3462
3462
  };
3463
3463
  ($mol_mem(($.$mol_plot_pane.prototype), "gap_x"));
@@ -3516,7 +3516,7 @@ var $;
3516
3516
  return "title";
3517
3517
  }
3518
3518
  sub(){
3519
- return [(this?.title())];
3519
+ return [(this.title())];
3520
3520
  }
3521
3521
  };
3522
3522
 
@@ -3568,7 +3568,7 @@ var $;
3568
3568
  return "";
3569
3569
  }
3570
3570
  hint(){
3571
- return (this?.title());
3571
+ return (this.title());
3572
3572
  }
3573
3573
  series_x(){
3574
3574
  return [];
@@ -3577,13 +3577,13 @@ var $;
3577
3577
  return [];
3578
3578
  }
3579
3579
  attr(){
3580
- return {...(super.attr()), "mol_plot_graph_type": (this?.type())};
3580
+ return {...(super.attr()), "mol_plot_graph_type": (this.type())};
3581
3581
  }
3582
3582
  style(){
3583
- return {...(super.style()), "color": (this?.color())};
3583
+ return {...(super.style()), "color": (this.color())};
3584
3584
  }
3585
3585
  viewport(){
3586
- const obj = new this.$.$mol_vector_2d((this?.viewport_x()), (this?.viewport_y()));
3586
+ const obj = new this.$.$mol_vector_2d((this.viewport_x()), (this.viewport_y()));
3587
3587
  return obj;
3588
3588
  }
3589
3589
  shift(){
@@ -3597,11 +3597,11 @@ var $;
3597
3597
  return obj;
3598
3598
  }
3599
3599
  dimensions_pane(){
3600
- const obj = new this.$.$mol_vector_2d((this?.dimensions_pane_x()), (this?.dimensions_pane_y()));
3600
+ const obj = new this.$.$mol_vector_2d((this.dimensions_pane_x()), (this.dimensions_pane_y()));
3601
3601
  return obj;
3602
3602
  }
3603
3603
  dimensions(){
3604
- const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
3604
+ const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
3605
3605
  return obj;
3606
3606
  }
3607
3607
  size_real(){
@@ -3609,7 +3609,7 @@ var $;
3609
3609
  return obj;
3610
3610
  }
3611
3611
  gap(){
3612
- const obj = new this.$.$mol_vector_2d((this?.gap_x()), (this?.gap_y()));
3612
+ const obj = new this.$.$mol_vector_2d((this.gap_x()), (this.gap_y()));
3613
3613
  return obj;
3614
3614
  }
3615
3615
  repos_x(id){
@@ -3632,7 +3632,7 @@ var $;
3632
3632
  }
3633
3633
  Hint(){
3634
3634
  const obj = new this.$.$mol_svg_title();
3635
- (obj.title) = () => ((this?.hint()));
3635
+ (obj.title) = () => ((this.hint()));
3636
3636
  return obj;
3637
3637
  }
3638
3638
  hue(next){
@@ -3667,10 +3667,10 @@ var $;
3667
3667
  return "black";
3668
3668
  }
3669
3669
  attr(){
3670
- return {...(super.attr()), "mol_plot_graph_type": (this?.type())};
3670
+ return {...(super.attr()), "mol_plot_graph_type": (this.type())};
3671
3671
  }
3672
3672
  style(){
3673
- return {...(super.style()), "color": (this?.color())};
3673
+ return {...(super.style()), "color": (this.color())};
3674
3674
  }
3675
3675
  };
3676
3676
 
@@ -3988,15 +3988,15 @@ var $;
3988
3988
  return "path";
3989
3989
  }
3990
3990
  attr(){
3991
- return {...(super.attr()), "d": (this?.curve())};
3991
+ return {...(super.attr()), "d": (this.curve())};
3992
3992
  }
3993
3993
  sub(){
3994
- return [(this?.Hint())];
3994
+ return [(this.Hint())];
3995
3995
  }
3996
3996
  Sample(){
3997
3997
  const obj = new this.$.$mol_plot_graph_sample();
3998
- (obj.color) = () => ((this?.color()));
3999
- (obj.type) = () => ((this?.type()));
3998
+ (obj.color) = () => ((this.color()));
3999
+ (obj.type) = () => ((this.type()));
4000
4000
  return obj;
4001
4001
  }
4002
4002
  };
@@ -4078,17 +4078,17 @@ var $;
4078
4078
  return [];
4079
4079
  }
4080
4080
  graphs_enriched(){
4081
- return (this?.graphs());
4081
+ return (this.graphs());
4082
4082
  }
4083
4083
  graph_samples(){
4084
4084
  return [];
4085
4085
  }
4086
4086
  sub(){
4087
- return (this?.graphs_enriched());
4087
+ return (this.graphs_enriched());
4088
4088
  }
4089
4089
  Sample(){
4090
4090
  const obj = new this.$.$mol_plot_graph_sample();
4091
- (obj.sub) = () => ((this?.graph_samples()));
4091
+ (obj.sub) = () => ((this.graph_samples()));
4092
4092
  return obj;
4093
4093
  }
4094
4094
  };
@@ -4172,7 +4172,7 @@ var $;
4172
4172
  return "path";
4173
4173
  }
4174
4174
  attr(){
4175
- return {...(super.attr()), "d": (this?.geometry())};
4175
+ return {...(super.attr()), "d": (this.geometry())};
4176
4176
  }
4177
4177
  };
4178
4178
 
@@ -4190,7 +4190,7 @@ var $;
4190
4190
  }
4191
4191
  Curve(){
4192
4192
  const obj = new this.$.$mol_svg_path();
4193
- (obj.geometry) = () => ((this?.curve()));
4193
+ (obj.geometry) = () => ((this.curve()));
4194
4194
  return obj;
4195
4195
  }
4196
4196
  points_max(){
@@ -4200,14 +4200,14 @@ var $;
4200
4200
  return 1;
4201
4201
  }
4202
4202
  style(){
4203
- return {...(super.style()), "stroke-width": (this?.diameter())};
4203
+ return {...(super.style()), "stroke-width": (this.diameter())};
4204
4204
  }
4205
4205
  sub(){
4206
- return [(this?.Hint()), (this?.Curve())];
4206
+ return [(this.Hint()), (this.Curve())];
4207
4207
  }
4208
4208
  Sample(){
4209
4209
  const obj = new this.$.$mol_plot_graph_sample();
4210
- (obj.color) = () => ((this?.color()));
4210
+ (obj.color) = () => ((this.color()));
4211
4211
  return obj;
4212
4212
  }
4213
4213
  };
@@ -4353,20 +4353,20 @@ var $;
4353
4353
  return [];
4354
4354
  }
4355
4355
  graphs(){
4356
- return (this?.level_graphs());
4356
+ return (this.level_graphs());
4357
4357
  }
4358
4358
  Level(id){
4359
4359
  const obj = new this.$.$mol_plot_map_heat_level();
4360
- (obj.hint) = () => ((this?.level_hint(id)));
4361
- (obj.points) = () => ((this?.level_points(id)));
4362
- (obj.opacity) = () => ((this?.level_opacity(id)));
4363
- (obj.diameter) = () => ((this?.level_diameter()));
4364
- (obj.aspect) = () => ((this?.level_aspect()));
4360
+ (obj.hint) = () => ((this.level_hint(id)));
4361
+ (obj.points) = () => ((this.level_points(id)));
4362
+ (obj.opacity) = () => ((this.level_opacity(id)));
4363
+ (obj.diameter) = () => ((this.level_diameter()));
4364
+ (obj.aspect) = () => ((this.level_aspect()));
4365
4365
  return obj;
4366
4366
  }
4367
4367
  Sample(){
4368
4368
  const obj = new this.$.$mol_plot_graph_sample();
4369
- (obj.color) = () => ((this?.color()));
4369
+ (obj.color) = () => ((this.color()));
4370
4370
  return obj;
4371
4371
  }
4372
4372
  };
@@ -4377,7 +4377,7 @@ var $;
4377
4377
  return "1";
4378
4378
  }
4379
4379
  style(){
4380
- return {...(super.style()), "opacity": (this?.opacity())};
4380
+ return {...(super.style()), "opacity": (this.opacity())};
4381
4381
  }
4382
4382
  };
4383
4383
 
@@ -4465,18 +4465,18 @@ var $;
4465
4465
  }
4466
4466
  Curve(){
4467
4467
  const obj = new this.$.$mol_svg_path();
4468
- (obj.geometry) = () => ((this?.curve()));
4468
+ (obj.geometry) = () => ((this.curve()));
4469
4469
  return obj;
4470
4470
  }
4471
4471
  style(){
4472
- return {...(super.style()), "stroke-width": (this?.stroke_width())};
4472
+ return {...(super.style()), "stroke-width": (this.stroke_width())};
4473
4473
  }
4474
4474
  sub(){
4475
- return [(this?.Hint()), (this?.Curve())];
4475
+ return [(this.Hint()), (this.Curve())];
4476
4476
  }
4477
4477
  Sample(){
4478
4478
  const obj = new this.$.$mol_plot_graph_sample();
4479
- (obj.color) = () => ((this?.color()));
4479
+ (obj.color) = () => ((this.color()));
4480
4480
  return obj;
4481
4481
  }
4482
4482
  };
@@ -4643,10 +4643,10 @@ var $;
4643
4643
  attr(){
4644
4644
  return {
4645
4645
  ...(super.attr()),
4646
- "width": (this?.width()),
4647
- "height": (this?.height()),
4648
- "x": (this?.pos_x()),
4649
- "y": (this?.pos_y())
4646
+ "width": (this.width()),
4647
+ "height": (this.height()),
4648
+ "x": (this.pos_x()),
4649
+ "y": (this.pos_y())
4650
4650
  };
4651
4651
  }
4652
4652
  };
@@ -4685,7 +4685,7 @@ var $;
4685
4685
  return "middle";
4686
4686
  }
4687
4687
  align_hor(){
4688
- return (this?.align());
4688
+ return (this.align());
4689
4689
  }
4690
4690
  align_vert(){
4691
4691
  return "baseline";
@@ -4702,14 +4702,14 @@ var $;
4702
4702
  attr(){
4703
4703
  return {
4704
4704
  ...(super.attr()),
4705
- "x": (this?.pos_x()),
4706
- "y": (this?.pos_y()),
4707
- "text-anchor": (this?.align_hor()),
4708
- "alignment-baseline": (this?.align_vert())
4705
+ "x": (this.pos_x()),
4706
+ "y": (this.pos_y()),
4707
+ "text-anchor": (this.align_hor()),
4708
+ "alignment-baseline": (this.align_vert())
4709
4709
  };
4710
4710
  }
4711
4711
  sub(){
4712
- return [(this?.text())];
4712
+ return [(this.text())];
4713
4713
  }
4714
4714
  };
4715
4715
 
@@ -4758,10 +4758,10 @@ var $;
4758
4758
  }
4759
4759
  Background(){
4760
4760
  const obj = new this.$.$mol_svg_rect();
4761
- (obj.pos_x) = () => ((this?.background_x()));
4762
- (obj.pos_y) = () => ((this?.background_y()));
4763
- (obj.width) = () => ((this?.background_width()));
4764
- (obj.height) = () => ((this?.background_height()));
4761
+ (obj.pos_x) = () => ((this.background_x()));
4762
+ (obj.pos_y) = () => ((this.background_y()));
4763
+ (obj.width) = () => ((this.background_width()));
4764
+ (obj.height) = () => ((this.background_height()));
4765
4765
  return obj;
4766
4766
  }
4767
4767
  curve(){
@@ -4769,7 +4769,7 @@ var $;
4769
4769
  }
4770
4770
  Curve(){
4771
4771
  const obj = new this.$.$mol_svg_path();
4772
- (obj.geometry) = () => ((this?.curve()));
4772
+ (obj.geometry) = () => ((this.curve()));
4773
4773
  return obj;
4774
4774
  }
4775
4775
  labels_formatted(){
@@ -4786,10 +4786,10 @@ var $;
4786
4786
  }
4787
4787
  Title(){
4788
4788
  const obj = new this.$.$mol_svg_text();
4789
- (obj.pos_x) = () => ((this?.title_pos_x()));
4790
- (obj.pos_y) = () => ((this?.title_pos_y()));
4791
- (obj.align) = () => ((this?.title_align()));
4792
- (obj.text) = () => ((this?.title()));
4789
+ (obj.pos_x) = () => ((this.title_pos_x()));
4790
+ (obj.pos_y) = () => ((this.title_pos_y()));
4791
+ (obj.align) = () => ((this.title_align()));
4792
+ (obj.text) = () => ((this.title()));
4793
4793
  return obj;
4794
4794
  }
4795
4795
  label_pos_x(id){
@@ -4799,7 +4799,7 @@ var $;
4799
4799
  return "";
4800
4800
  }
4801
4801
  label_pos(id){
4802
- return [(this?.label_pos_x(id)), (this?.label_pos_y(id))];
4802
+ return [(this.label_pos_x(id)), (this.label_pos_y(id))];
4803
4803
  }
4804
4804
  label_text(id){
4805
4805
  return "";
@@ -4839,17 +4839,17 @@ var $;
4839
4839
  }
4840
4840
  sub(){
4841
4841
  return [
4842
- (this?.Background()),
4843
- (this?.Curve()),
4844
- (this?.labels_formatted()),
4845
- (this?.Title())
4842
+ (this.Background()),
4843
+ (this.Curve()),
4844
+ (this.labels_formatted()),
4845
+ (this.Title())
4846
4846
  ];
4847
4847
  }
4848
4848
  Label(id){
4849
4849
  const obj = new this.$.$mol_svg_text();
4850
- (obj.pos) = () => ((this?.label_pos(id)));
4851
- (obj.text) = () => ((this?.label_text(id)));
4852
- (obj.align) = () => ((this?.label_align()));
4850
+ (obj.pos) = () => ((this.label_pos(id)));
4851
+ (obj.text) = () => ((this.label_text(id)));
4852
+ (obj.align) = () => ((this.label_align()));
4853
4853
  return obj;
4854
4854
  }
4855
4855
  };
@@ -4988,13 +4988,13 @@ var $;
4988
4988
  return "14";
4989
4989
  }
4990
4990
  label_pos_x(id){
4991
- return (this?.title_pos_x());
4991
+ return (this.title_pos_x());
4992
4992
  }
4993
4993
  background_height(){
4994
4994
  return "100%";
4995
4995
  }
4996
4996
  background_width(){
4997
- return (this?.title_pos_x());
4997
+ return (this.title_pos_x());
4998
4998
  }
4999
4999
  };
5000
5000
 
@@ -5066,7 +5066,7 @@ var $;
5066
5066
  return "100%";
5067
5067
  }
5068
5068
  label_pos_y(id){
5069
- return (this?.title_pos_y());
5069
+ return (this.title_pos_y());
5070
5070
  }
5071
5071
  background_width(){
5072
5072
  return "100%";
@@ -5141,16 +5141,16 @@ var $;
5141
5141
  return "1rem";
5142
5142
  }
5143
5143
  box_pos_x(){
5144
- return (this?.pos_x());
5144
+ return (this.pos_x());
5145
5145
  }
5146
5146
  box_pos_y(){
5147
5147
  return "0";
5148
5148
  }
5149
5149
  Back(){
5150
5150
  const obj = new this.$.$mol_svg_rect();
5151
- (obj.width) = () => ((this?.box_width()));
5152
- (obj.height) = () => ((this?.box_height()));
5153
- (obj.pos) = () => ([(this?.box_pos_x()), (this?.box_pos_y())]);
5151
+ (obj.width) = () => ((this.box_width()));
5152
+ (obj.height) = () => ((this.box_height()));
5153
+ (obj.pos) = () => ([(this.box_pos_x()), (this.box_pos_y())]);
5154
5154
  return obj;
5155
5155
  }
5156
5156
  pos_x(){
@@ -5167,9 +5167,9 @@ var $;
5167
5167
  }
5168
5168
  Text(){
5169
5169
  const obj = new this.$.$mol_svg_text();
5170
- (obj.pos) = () => ([(this?.pos_x()), (this?.pos_y())]);
5171
- (obj.align) = () => ((this?.align()));
5172
- (obj.sub) = () => ([(this?.text())]);
5170
+ (obj.pos) = () => ([(this.pos_x()), (this.pos_y())]);
5171
+ (obj.align) = () => ((this.align()));
5172
+ (obj.sub) = () => ([(this.text())]);
5173
5173
  return obj;
5174
5174
  }
5175
5175
  font_size(){
@@ -5179,7 +5179,7 @@ var $;
5179
5179
  return 0;
5180
5180
  }
5181
5181
  sub(){
5182
- return [(this?.Back()), (this?.Text())];
5182
+ return [(this.Back()), (this.Text())];
5183
5183
  }
5184
5184
  };
5185
5185
  ($mol_mem(($.$mol_svg_text_box.prototype), "Back"));
@@ -5268,7 +5268,7 @@ var $;
5268
5268
  }
5269
5269
  Curve(){
5270
5270
  const obj = new this.$.$mol_svg_path();
5271
- (obj.geometry) = () => ((this?.curve()));
5271
+ (obj.geometry) = () => ((this.curve()));
5272
5272
  return obj;
5273
5273
  }
5274
5274
  title_x_pos_x(){
@@ -5282,9 +5282,9 @@ var $;
5282
5282
  }
5283
5283
  Label_x(){
5284
5284
  const obj = new this.$.$mol_svg_text_box();
5285
- (obj.pos_x) = () => ((this?.title_x_pos_x()));
5286
- (obj.pos_y) = () => ((this?.title_x_pos_y()));
5287
- (obj.text) = () => ((this?.title_x()));
5285
+ (obj.pos_x) = () => ((this.title_x_pos_x()));
5286
+ (obj.pos_y) = () => ((this.title_x_pos_y()));
5287
+ (obj.text) = () => ((this.title_x()));
5288
5288
  return obj;
5289
5289
  }
5290
5290
  title_y_pos_x(){
@@ -5298,9 +5298,9 @@ var $;
5298
5298
  }
5299
5299
  Label_y(){
5300
5300
  const obj = new this.$.$mol_svg_text_box();
5301
- (obj.pos_x) = () => ((this?.title_y_pos_x()));
5302
- (obj.pos_y) = () => ((this?.title_y_pos_y()));
5303
- (obj.text) = () => ((this?.title_y()));
5301
+ (obj.pos_x) = () => ((this.title_y_pos_x()));
5302
+ (obj.pos_y) = () => ((this.title_y_pos_y()));
5303
+ (obj.text) = () => ((this.title_y()));
5304
5304
  return obj;
5305
5305
  }
5306
5306
  labels(){
@@ -5319,14 +5319,14 @@ var $;
5319
5319
  return [];
5320
5320
  }
5321
5321
  dimensions(){
5322
- const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
5322
+ const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
5323
5323
  return obj;
5324
5324
  }
5325
5325
  sub(){
5326
5326
  return [
5327
- (this?.Curve()),
5328
- (this?.Label_x()),
5329
- (this?.Label_y())
5327
+ (this.Curve()),
5328
+ (this.Label_x()),
5329
+ (this.Label_y())
5330
5330
  ];
5331
5331
  }
5332
5332
  };