Przeglądaj źródła

Update 'src/app/component-registry/point-component.js'

Added header
Changes to use object constructor "description" (app/core/models/components/component-options.js) in button (app/core/application/menu.js)
New field to new ComponentOptions(...): "Construct Point (free point with click over blank area or point over with clik over line, circumference,...) ",
leo 8 miesięcy temu
rodzic
commit
071f049d91
1 zmienionych plików z 24 dodań i 4 usunięć
  1. 24 4
      src/app/component-registry/point-component.js

+ 24 - 4
src/app/component-registry/point-component.js

@@ -1,15 +1,35 @@
+/*
+ * iGeom by LInE
+ * Free software to student private data
+ *
+ * http://www.matematica.br/igeom
+ * http://www.usp.br/line
+ *
+ * Create and register new element MidPoint
+ * It is used in ./app/core/application/menu.js
+ *
+ * ./app/component-registry/point-component.js
+ * @version 2023/09/20: Added new parameter 'description,' to 'ComponentOptions'
+ */
+
 import { Component } from "../core/models/components/component";
 import { ComponentOptions } from "../core/models/components/component-options";
 import { PointDrawer } from "../components/point-component/drawers/point-drawer";
+
 class PointComponent extends Component {
-  constructor() {
+
+  //TODO: it is necessary internationalization!
+
+  constructor () {
     const options = new ComponentOptions(
       "3c36afc9b5624ea4b05bdc9fb9912ebe",
       "Point",
+      "Construct Point (free point with click over blank area or point over with clik over line, circumference,...) ",
       "point"
-    );
+      );
     super(new PointDrawer(), options);
+    }
+
   }
-}
 
-export const pointComponent = new PointComponent();
+export const pointComponent = new PointComponent();