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/node.mjs CHANGED
@@ -3353,8 +3353,8 @@ var $;
3353
3353
  attr(){
3354
3354
  return {
3355
3355
  ...(super.attr()),
3356
- "viewBox": (this?.view_box()),
3357
- "preserveAspectRatio": (this?.aspect())
3356
+ "viewBox": (this.view_box()),
3357
+ "preserveAspectRatio": (this.aspect())
3358
3358
  };
3359
3359
  }
3360
3360
  };
@@ -3628,11 +3628,11 @@ var $;
3628
3628
  event(){
3629
3629
  return {
3630
3630
  ...(super.event()),
3631
- "pointerdown": (next) => (this?.event_start(next)),
3632
- "pointermove": (next) => (this?.event_move(next)),
3633
- "pointerup": (next) => (this?.event_end(next)),
3634
- "pointerleave": (next) => (this?.event_leave(next)),
3635
- "wheel": (next) => (this?.event_wheel(next))
3631
+ "pointerdown": (next) => (this.event_start(next)),
3632
+ "pointermove": (next) => (this.event_move(next)),
3633
+ "pointerup": (next) => (this.event_end(next)),
3634
+ "pointerleave": (next) => (this.event_leave(next)),
3635
+ "wheel": (next) => (this.event_wheel(next))
3636
3636
  };
3637
3637
  }
3638
3638
  };
@@ -3922,11 +3922,11 @@ var $;
3922
3922
  ;
3923
3923
  ($.$mol_plot_pane) = class $mol_plot_pane extends ($.$mol_svg_root) {
3924
3924
  gap_x(){
3925
- const obj = new this.$.$mol_vector_range((this?.gap_left()), (this?.gap_right()));
3925
+ const obj = new this.$.$mol_vector_range((this.gap_left()), (this.gap_right()));
3926
3926
  return obj;
3927
3927
  }
3928
3928
  gap_y(){
3929
- const obj = new this.$.$mol_vector_range((this?.gap_bottom()), (this?.gap_top()));
3929
+ const obj = new this.$.$mol_vector_range((this.gap_bottom()), (this.gap_top()));
3930
3930
  return obj;
3931
3931
  }
3932
3932
  shift_limit_x(){
@@ -3968,17 +3968,17 @@ var $;
3968
3968
  return [];
3969
3969
  }
3970
3970
  graphs_positioned(){
3971
- return (this?.graphs());
3971
+ return (this.graphs());
3972
3972
  }
3973
3973
  graphs_visible(){
3974
- return (this?.graphs_positioned());
3974
+ return (this.graphs_positioned());
3975
3975
  }
3976
3976
  zoom(next){
3977
3977
  if(next !== undefined) return next;
3978
3978
  return 1;
3979
3979
  }
3980
3980
  cursor_position(){
3981
- return (this?.Touch()?.pointer_center());
3981
+ return (this.Touch().pointer_center());
3982
3982
  }
3983
3983
  allow_draw(){
3984
3984
  return true;
@@ -3990,10 +3990,10 @@ var $;
3990
3990
  return true;
3991
3991
  }
3992
3992
  action_type(){
3993
- return (this?.Touch()?.action_type());
3993
+ return (this.Touch().action_type());
3994
3994
  }
3995
3995
  action_point(){
3996
- return (this?.Touch()?.action_point());
3996
+ return (this.Touch().action_point());
3997
3997
  }
3998
3998
  draw_start(next){
3999
3999
  if(next !== undefined) return next;
@@ -4009,14 +4009,14 @@ var $;
4009
4009
  }
4010
4010
  Touch(){
4011
4011
  const obj = new this.$.$mol_touch();
4012
- (obj.zoom) = (next) => ((this?.zoom(next)));
4013
- (obj.pan) = (next) => ((this?.shift(next)));
4014
- (obj.allow_draw) = () => ((this?.allow_draw()));
4015
- (obj.allow_pan) = () => ((this?.allow_pan()));
4016
- (obj.allow_zoom) = () => ((this?.allow_zoom()));
4017
- (obj.draw_start) = (next) => ((this?.draw_start(next)));
4018
- (obj.draw) = (next) => ((this?.draw(next)));
4019
- (obj.draw_end) = (next) => ((this?.draw_end(next)));
4012
+ (obj.zoom) = (next) => ((this.zoom(next)));
4013
+ (obj.pan) = (next) => ((this.shift(next)));
4014
+ (obj.allow_draw) = () => ((this.allow_draw()));
4015
+ (obj.allow_pan) = () => ((this.allow_pan()));
4016
+ (obj.allow_zoom) = () => ((this.allow_zoom()));
4017
+ (obj.draw_start) = (next) => ((this.draw_start(next)));
4018
+ (obj.draw) = (next) => ((this.draw(next)));
4019
+ (obj.draw_end) = (next) => ((this.draw_end(next)));
4020
4020
  return obj;
4021
4021
  }
4022
4022
  aspect(){
@@ -4037,23 +4037,23 @@ var $;
4037
4037
  return 24;
4038
4038
  }
4039
4039
  gap_left(){
4040
- return (this?.gap_hor());
4040
+ return (this.gap_hor());
4041
4041
  }
4042
4042
  gap_right(){
4043
- return (this?.gap_hor());
4043
+ return (this.gap_hor());
4044
4044
  }
4045
4045
  gap_top(){
4046
- return (this?.gap_vert());
4046
+ return (this.gap_vert());
4047
4047
  }
4048
4048
  gap_bottom(){
4049
- return (this?.gap_vert());
4049
+ return (this.gap_vert());
4050
4050
  }
4051
4051
  gap(){
4052
- const obj = new this.$.$mol_vector_2d((this?.gap_x()), (this?.gap_y()));
4052
+ const obj = new this.$.$mol_vector_2d((this.gap_x()), (this.gap_y()));
4053
4053
  return obj;
4054
4054
  }
4055
4055
  shift_limit(){
4056
- const obj = new this.$.$mol_vector_2d((this?.shift_limit_x()), (this?.shift_limit_y()));
4056
+ const obj = new this.$.$mol_vector_2d((this.shift_limit_x()), (this.shift_limit_y()));
4057
4057
  return obj;
4058
4058
  }
4059
4059
  shift_default(){
@@ -4066,7 +4066,7 @@ var $;
4066
4066
  return obj;
4067
4067
  }
4068
4068
  scale_limit(){
4069
- const obj = new this.$.$mol_vector_2d((this?.scale_limit_x()), (this?.scale_limit_y()));
4069
+ const obj = new this.$.$mol_vector_2d((this.scale_limit_x()), (this.scale_limit_y()));
4070
4070
  return obj;
4071
4071
  }
4072
4072
  scale_default(){
@@ -4095,21 +4095,21 @@ var $;
4095
4095
  return obj;
4096
4096
  }
4097
4097
  dimensions(){
4098
- const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
4098
+ const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
4099
4099
  return obj;
4100
4100
  }
4101
4101
  dimensions_viewport(){
4102
- const obj = new this.$.$mol_vector_2d((this?.dimensions_viewport_x()), (this?.dimensions_viewport_y()));
4102
+ const obj = new this.$.$mol_vector_2d((this.dimensions_viewport_x()), (this.dimensions_viewport_y()));
4103
4103
  return obj;
4104
4104
  }
4105
4105
  sub(){
4106
- return (this?.graphs_sorted());
4106
+ return (this.graphs_sorted());
4107
4107
  }
4108
4108
  graphs_colored(){
4109
- return (this?.graphs_visible());
4109
+ return (this.graphs_visible());
4110
4110
  }
4111
4111
  plugins(){
4112
- return [...(super.plugins()), (this?.Touch())];
4112
+ return [...(super.plugins()), (this.Touch())];
4113
4113
  }
4114
4114
  };
4115
4115
  ($mol_mem(($.$mol_plot_pane.prototype), "gap_x"));
@@ -4168,7 +4168,7 @@ var $;
4168
4168
  return "title";
4169
4169
  }
4170
4170
  sub(){
4171
- return [(this?.title())];
4171
+ return [(this.title())];
4172
4172
  }
4173
4173
  };
4174
4174
 
@@ -4220,7 +4220,7 @@ var $;
4220
4220
  return "";
4221
4221
  }
4222
4222
  hint(){
4223
- return (this?.title());
4223
+ return (this.title());
4224
4224
  }
4225
4225
  series_x(){
4226
4226
  return [];
@@ -4229,13 +4229,13 @@ var $;
4229
4229
  return [];
4230
4230
  }
4231
4231
  attr(){
4232
- return {...(super.attr()), "mol_plot_graph_type": (this?.type())};
4232
+ return {...(super.attr()), "mol_plot_graph_type": (this.type())};
4233
4233
  }
4234
4234
  style(){
4235
- return {...(super.style()), "color": (this?.color())};
4235
+ return {...(super.style()), "color": (this.color())};
4236
4236
  }
4237
4237
  viewport(){
4238
- const obj = new this.$.$mol_vector_2d((this?.viewport_x()), (this?.viewport_y()));
4238
+ const obj = new this.$.$mol_vector_2d((this.viewport_x()), (this.viewport_y()));
4239
4239
  return obj;
4240
4240
  }
4241
4241
  shift(){
@@ -4249,11 +4249,11 @@ var $;
4249
4249
  return obj;
4250
4250
  }
4251
4251
  dimensions_pane(){
4252
- const obj = new this.$.$mol_vector_2d((this?.dimensions_pane_x()), (this?.dimensions_pane_y()));
4252
+ const obj = new this.$.$mol_vector_2d((this.dimensions_pane_x()), (this.dimensions_pane_y()));
4253
4253
  return obj;
4254
4254
  }
4255
4255
  dimensions(){
4256
- const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
4256
+ const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
4257
4257
  return obj;
4258
4258
  }
4259
4259
  size_real(){
@@ -4261,7 +4261,7 @@ var $;
4261
4261
  return obj;
4262
4262
  }
4263
4263
  gap(){
4264
- const obj = new this.$.$mol_vector_2d((this?.gap_x()), (this?.gap_y()));
4264
+ const obj = new this.$.$mol_vector_2d((this.gap_x()), (this.gap_y()));
4265
4265
  return obj;
4266
4266
  }
4267
4267
  repos_x(id){
@@ -4284,7 +4284,7 @@ var $;
4284
4284
  }
4285
4285
  Hint(){
4286
4286
  const obj = new this.$.$mol_svg_title();
4287
- (obj.title) = () => ((this?.hint()));
4287
+ (obj.title) = () => ((this.hint()));
4288
4288
  return obj;
4289
4289
  }
4290
4290
  hue(next){
@@ -4319,10 +4319,10 @@ var $;
4319
4319
  return "black";
4320
4320
  }
4321
4321
  attr(){
4322
- return {...(super.attr()), "mol_plot_graph_type": (this?.type())};
4322
+ return {...(super.attr()), "mol_plot_graph_type": (this.type())};
4323
4323
  }
4324
4324
  style(){
4325
- return {...(super.style()), "color": (this?.color())};
4325
+ return {...(super.style()), "color": (this.color())};
4326
4326
  }
4327
4327
  };
4328
4328
 
@@ -4640,15 +4640,15 @@ var $;
4640
4640
  return "path";
4641
4641
  }
4642
4642
  attr(){
4643
- return {...(super.attr()), "d": (this?.curve())};
4643
+ return {...(super.attr()), "d": (this.curve())};
4644
4644
  }
4645
4645
  sub(){
4646
- return [(this?.Hint())];
4646
+ return [(this.Hint())];
4647
4647
  }
4648
4648
  Sample(){
4649
4649
  const obj = new this.$.$mol_plot_graph_sample();
4650
- (obj.color) = () => ((this?.color()));
4651
- (obj.type) = () => ((this?.type()));
4650
+ (obj.color) = () => ((this.color()));
4651
+ (obj.type) = () => ((this.type()));
4652
4652
  return obj;
4653
4653
  }
4654
4654
  };
@@ -4730,17 +4730,17 @@ var $;
4730
4730
  return [];
4731
4731
  }
4732
4732
  graphs_enriched(){
4733
- return (this?.graphs());
4733
+ return (this.graphs());
4734
4734
  }
4735
4735
  graph_samples(){
4736
4736
  return [];
4737
4737
  }
4738
4738
  sub(){
4739
- return (this?.graphs_enriched());
4739
+ return (this.graphs_enriched());
4740
4740
  }
4741
4741
  Sample(){
4742
4742
  const obj = new this.$.$mol_plot_graph_sample();
4743
- (obj.sub) = () => ((this?.graph_samples()));
4743
+ (obj.sub) = () => ((this.graph_samples()));
4744
4744
  return obj;
4745
4745
  }
4746
4746
  };
@@ -4824,7 +4824,7 @@ var $;
4824
4824
  return "path";
4825
4825
  }
4826
4826
  attr(){
4827
- return {...(super.attr()), "d": (this?.geometry())};
4827
+ return {...(super.attr()), "d": (this.geometry())};
4828
4828
  }
4829
4829
  };
4830
4830
 
@@ -4842,7 +4842,7 @@ var $;
4842
4842
  }
4843
4843
  Curve(){
4844
4844
  const obj = new this.$.$mol_svg_path();
4845
- (obj.geometry) = () => ((this?.curve()));
4845
+ (obj.geometry) = () => ((this.curve()));
4846
4846
  return obj;
4847
4847
  }
4848
4848
  points_max(){
@@ -4852,14 +4852,14 @@ var $;
4852
4852
  return 1;
4853
4853
  }
4854
4854
  style(){
4855
- return {...(super.style()), "stroke-width": (this?.diameter())};
4855
+ return {...(super.style()), "stroke-width": (this.diameter())};
4856
4856
  }
4857
4857
  sub(){
4858
- return [(this?.Hint()), (this?.Curve())];
4858
+ return [(this.Hint()), (this.Curve())];
4859
4859
  }
4860
4860
  Sample(){
4861
4861
  const obj = new this.$.$mol_plot_graph_sample();
4862
- (obj.color) = () => ((this?.color()));
4862
+ (obj.color) = () => ((this.color()));
4863
4863
  return obj;
4864
4864
  }
4865
4865
  };
@@ -5005,20 +5005,20 @@ var $;
5005
5005
  return [];
5006
5006
  }
5007
5007
  graphs(){
5008
- return (this?.level_graphs());
5008
+ return (this.level_graphs());
5009
5009
  }
5010
5010
  Level(id){
5011
5011
  const obj = new this.$.$mol_plot_map_heat_level();
5012
- (obj.hint) = () => ((this?.level_hint(id)));
5013
- (obj.points) = () => ((this?.level_points(id)));
5014
- (obj.opacity) = () => ((this?.level_opacity(id)));
5015
- (obj.diameter) = () => ((this?.level_diameter()));
5016
- (obj.aspect) = () => ((this?.level_aspect()));
5012
+ (obj.hint) = () => ((this.level_hint(id)));
5013
+ (obj.points) = () => ((this.level_points(id)));
5014
+ (obj.opacity) = () => ((this.level_opacity(id)));
5015
+ (obj.diameter) = () => ((this.level_diameter()));
5016
+ (obj.aspect) = () => ((this.level_aspect()));
5017
5017
  return obj;
5018
5018
  }
5019
5019
  Sample(){
5020
5020
  const obj = new this.$.$mol_plot_graph_sample();
5021
- (obj.color) = () => ((this?.color()));
5021
+ (obj.color) = () => ((this.color()));
5022
5022
  return obj;
5023
5023
  }
5024
5024
  };
@@ -5029,7 +5029,7 @@ var $;
5029
5029
  return "1";
5030
5030
  }
5031
5031
  style(){
5032
- return {...(super.style()), "opacity": (this?.opacity())};
5032
+ return {...(super.style()), "opacity": (this.opacity())};
5033
5033
  }
5034
5034
  };
5035
5035
 
@@ -5117,18 +5117,18 @@ var $;
5117
5117
  }
5118
5118
  Curve(){
5119
5119
  const obj = new this.$.$mol_svg_path();
5120
- (obj.geometry) = () => ((this?.curve()));
5120
+ (obj.geometry) = () => ((this.curve()));
5121
5121
  return obj;
5122
5122
  }
5123
5123
  style(){
5124
- return {...(super.style()), "stroke-width": (this?.stroke_width())};
5124
+ return {...(super.style()), "stroke-width": (this.stroke_width())};
5125
5125
  }
5126
5126
  sub(){
5127
- return [(this?.Hint()), (this?.Curve())];
5127
+ return [(this.Hint()), (this.Curve())];
5128
5128
  }
5129
5129
  Sample(){
5130
5130
  const obj = new this.$.$mol_plot_graph_sample();
5131
- (obj.color) = () => ((this?.color()));
5131
+ (obj.color) = () => ((this.color()));
5132
5132
  return obj;
5133
5133
  }
5134
5134
  };
@@ -5295,10 +5295,10 @@ var $;
5295
5295
  attr(){
5296
5296
  return {
5297
5297
  ...(super.attr()),
5298
- "width": (this?.width()),
5299
- "height": (this?.height()),
5300
- "x": (this?.pos_x()),
5301
- "y": (this?.pos_y())
5298
+ "width": (this.width()),
5299
+ "height": (this.height()),
5300
+ "x": (this.pos_x()),
5301
+ "y": (this.pos_y())
5302
5302
  };
5303
5303
  }
5304
5304
  };
@@ -5337,7 +5337,7 @@ var $;
5337
5337
  return "middle";
5338
5338
  }
5339
5339
  align_hor(){
5340
- return (this?.align());
5340
+ return (this.align());
5341
5341
  }
5342
5342
  align_vert(){
5343
5343
  return "baseline";
@@ -5354,14 +5354,14 @@ var $;
5354
5354
  attr(){
5355
5355
  return {
5356
5356
  ...(super.attr()),
5357
- "x": (this?.pos_x()),
5358
- "y": (this?.pos_y()),
5359
- "text-anchor": (this?.align_hor()),
5360
- "alignment-baseline": (this?.align_vert())
5357
+ "x": (this.pos_x()),
5358
+ "y": (this.pos_y()),
5359
+ "text-anchor": (this.align_hor()),
5360
+ "alignment-baseline": (this.align_vert())
5361
5361
  };
5362
5362
  }
5363
5363
  sub(){
5364
- return [(this?.text())];
5364
+ return [(this.text())];
5365
5365
  }
5366
5366
  };
5367
5367
 
@@ -5410,10 +5410,10 @@ var $;
5410
5410
  }
5411
5411
  Background(){
5412
5412
  const obj = new this.$.$mol_svg_rect();
5413
- (obj.pos_x) = () => ((this?.background_x()));
5414
- (obj.pos_y) = () => ((this?.background_y()));
5415
- (obj.width) = () => ((this?.background_width()));
5416
- (obj.height) = () => ((this?.background_height()));
5413
+ (obj.pos_x) = () => ((this.background_x()));
5414
+ (obj.pos_y) = () => ((this.background_y()));
5415
+ (obj.width) = () => ((this.background_width()));
5416
+ (obj.height) = () => ((this.background_height()));
5417
5417
  return obj;
5418
5418
  }
5419
5419
  curve(){
@@ -5421,7 +5421,7 @@ var $;
5421
5421
  }
5422
5422
  Curve(){
5423
5423
  const obj = new this.$.$mol_svg_path();
5424
- (obj.geometry) = () => ((this?.curve()));
5424
+ (obj.geometry) = () => ((this.curve()));
5425
5425
  return obj;
5426
5426
  }
5427
5427
  labels_formatted(){
@@ -5438,10 +5438,10 @@ var $;
5438
5438
  }
5439
5439
  Title(){
5440
5440
  const obj = new this.$.$mol_svg_text();
5441
- (obj.pos_x) = () => ((this?.title_pos_x()));
5442
- (obj.pos_y) = () => ((this?.title_pos_y()));
5443
- (obj.align) = () => ((this?.title_align()));
5444
- (obj.text) = () => ((this?.title()));
5441
+ (obj.pos_x) = () => ((this.title_pos_x()));
5442
+ (obj.pos_y) = () => ((this.title_pos_y()));
5443
+ (obj.align) = () => ((this.title_align()));
5444
+ (obj.text) = () => ((this.title()));
5445
5445
  return obj;
5446
5446
  }
5447
5447
  label_pos_x(id){
@@ -5451,7 +5451,7 @@ var $;
5451
5451
  return "";
5452
5452
  }
5453
5453
  label_pos(id){
5454
- return [(this?.label_pos_x(id)), (this?.label_pos_y(id))];
5454
+ return [(this.label_pos_x(id)), (this.label_pos_y(id))];
5455
5455
  }
5456
5456
  label_text(id){
5457
5457
  return "";
@@ -5491,17 +5491,17 @@ var $;
5491
5491
  }
5492
5492
  sub(){
5493
5493
  return [
5494
- (this?.Background()),
5495
- (this?.Curve()),
5496
- (this?.labels_formatted()),
5497
- (this?.Title())
5494
+ (this.Background()),
5495
+ (this.Curve()),
5496
+ (this.labels_formatted()),
5497
+ (this.Title())
5498
5498
  ];
5499
5499
  }
5500
5500
  Label(id){
5501
5501
  const obj = new this.$.$mol_svg_text();
5502
- (obj.pos) = () => ((this?.label_pos(id)));
5503
- (obj.text) = () => ((this?.label_text(id)));
5504
- (obj.align) = () => ((this?.label_align()));
5502
+ (obj.pos) = () => ((this.label_pos(id)));
5503
+ (obj.text) = () => ((this.label_text(id)));
5504
+ (obj.align) = () => ((this.label_align()));
5505
5505
  return obj;
5506
5506
  }
5507
5507
  };
@@ -5640,13 +5640,13 @@ var $;
5640
5640
  return "14";
5641
5641
  }
5642
5642
  label_pos_x(id){
5643
- return (this?.title_pos_x());
5643
+ return (this.title_pos_x());
5644
5644
  }
5645
5645
  background_height(){
5646
5646
  return "100%";
5647
5647
  }
5648
5648
  background_width(){
5649
- return (this?.title_pos_x());
5649
+ return (this.title_pos_x());
5650
5650
  }
5651
5651
  };
5652
5652
 
@@ -5718,7 +5718,7 @@ var $;
5718
5718
  return "100%";
5719
5719
  }
5720
5720
  label_pos_y(id){
5721
- return (this?.title_pos_y());
5721
+ return (this.title_pos_y());
5722
5722
  }
5723
5723
  background_width(){
5724
5724
  return "100%";
@@ -5793,16 +5793,16 @@ var $;
5793
5793
  return "1rem";
5794
5794
  }
5795
5795
  box_pos_x(){
5796
- return (this?.pos_x());
5796
+ return (this.pos_x());
5797
5797
  }
5798
5798
  box_pos_y(){
5799
5799
  return "0";
5800
5800
  }
5801
5801
  Back(){
5802
5802
  const obj = new this.$.$mol_svg_rect();
5803
- (obj.width) = () => ((this?.box_width()));
5804
- (obj.height) = () => ((this?.box_height()));
5805
- (obj.pos) = () => ([(this?.box_pos_x()), (this?.box_pos_y())]);
5803
+ (obj.width) = () => ((this.box_width()));
5804
+ (obj.height) = () => ((this.box_height()));
5805
+ (obj.pos) = () => ([(this.box_pos_x()), (this.box_pos_y())]);
5806
5806
  return obj;
5807
5807
  }
5808
5808
  pos_x(){
@@ -5819,9 +5819,9 @@ var $;
5819
5819
  }
5820
5820
  Text(){
5821
5821
  const obj = new this.$.$mol_svg_text();
5822
- (obj.pos) = () => ([(this?.pos_x()), (this?.pos_y())]);
5823
- (obj.align) = () => ((this?.align()));
5824
- (obj.sub) = () => ([(this?.text())]);
5822
+ (obj.pos) = () => ([(this.pos_x()), (this.pos_y())]);
5823
+ (obj.align) = () => ((this.align()));
5824
+ (obj.sub) = () => ([(this.text())]);
5825
5825
  return obj;
5826
5826
  }
5827
5827
  font_size(){
@@ -5831,7 +5831,7 @@ var $;
5831
5831
  return 0;
5832
5832
  }
5833
5833
  sub(){
5834
- return [(this?.Back()), (this?.Text())];
5834
+ return [(this.Back()), (this.Text())];
5835
5835
  }
5836
5836
  };
5837
5837
  ($mol_mem(($.$mol_svg_text_box.prototype), "Back"));
@@ -5920,7 +5920,7 @@ var $;
5920
5920
  }
5921
5921
  Curve(){
5922
5922
  const obj = new this.$.$mol_svg_path();
5923
- (obj.geometry) = () => ((this?.curve()));
5923
+ (obj.geometry) = () => ((this.curve()));
5924
5924
  return obj;
5925
5925
  }
5926
5926
  title_x_pos_x(){
@@ -5934,9 +5934,9 @@ var $;
5934
5934
  }
5935
5935
  Label_x(){
5936
5936
  const obj = new this.$.$mol_svg_text_box();
5937
- (obj.pos_x) = () => ((this?.title_x_pos_x()));
5938
- (obj.pos_y) = () => ((this?.title_x_pos_y()));
5939
- (obj.text) = () => ((this?.title_x()));
5937
+ (obj.pos_x) = () => ((this.title_x_pos_x()));
5938
+ (obj.pos_y) = () => ((this.title_x_pos_y()));
5939
+ (obj.text) = () => ((this.title_x()));
5940
5940
  return obj;
5941
5941
  }
5942
5942
  title_y_pos_x(){
@@ -5950,9 +5950,9 @@ var $;
5950
5950
  }
5951
5951
  Label_y(){
5952
5952
  const obj = new this.$.$mol_svg_text_box();
5953
- (obj.pos_x) = () => ((this?.title_y_pos_x()));
5954
- (obj.pos_y) = () => ((this?.title_y_pos_y()));
5955
- (obj.text) = () => ((this?.title_y()));
5953
+ (obj.pos_x) = () => ((this.title_y_pos_x()));
5954
+ (obj.pos_y) = () => ((this.title_y_pos_y()));
5955
+ (obj.text) = () => ((this.title_y()));
5956
5956
  return obj;
5957
5957
  }
5958
5958
  labels(){
@@ -5971,14 +5971,14 @@ var $;
5971
5971
  return [];
5972
5972
  }
5973
5973
  dimensions(){
5974
- const obj = new this.$.$mol_vector_2d((this?.dimensions_x()), (this?.dimensions_y()));
5974
+ const obj = new this.$.$mol_vector_2d((this.dimensions_x()), (this.dimensions_y()));
5975
5975
  return obj;
5976
5976
  }
5977
5977
  sub(){
5978
5978
  return [
5979
- (this?.Curve()),
5980
- (this?.Label_x()),
5981
- (this?.Label_y())
5979
+ (this.Curve()),
5980
+ (this.Label_x()),
5981
+ (this.Label_y())
5982
5982
  ];
5983
5983
  }
5984
5984
  };