123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- 1;
- function OnInitializeData(reload, preview) {
-
- PUI(()=>{
-
-
-
-
- });
- }
- function OnReady(reload, preview) {
-
- PUI(()=>{
-
-
-
-
- });
- }
- function OnCloseForm() {
- }
- function OnException(err) {
-
- }
- function OnRet(){
- unit.form.mainfrm.menu(0);
- }
- function OnDetermin(){
- unit.form.mainfrm.OnSend('addLinePoints ' + ui.x1.value + ' ' + ui.y1.value + ' ' + ui.z1.value + ' '+ ui.x2.value + ' '+ ui.y2.value + ' '+ ui.z2.value + ' '+ ui.pb_s.value);
-
-
- }
- function OnReturn(){
- unit.form.mainfrm.menu(0);
- }
- function OnDetermine(){
- unit.form.mainfrm.OnSend('addLinePoints2 ' + + ui.x1_1.value + ' ' + ui.y1_1.value + ' ' + ui.z1_1.value + ' '+ ui.x2_2.value + ' '+ ui.y2_2.value + ' '+ ui.z2_2.value + ' '+ ui.pb_n.value);
-
-
- }
- function OnNode(){
- ui.select_stk.index = 1;
- }
- function OnSegment(){
- ui.select_stk.index = 0;
- }
- function OnParentDockerMessage(type, para) {
- }
- function onDragFile(filepath) {
- }
- function PUI(cb) {
- if(pui){cb();}
- }
- function BLOCK_EVENT(cb) {
- ui.block_event = true;
-
- cb();
-
- ui.block_event = false;
- }
- function CW_DeclareVariable(name, setter, getter) {
- if(typeof(__DeclareVariable) === 'function') {
- __DeclareVariable(name, setter, getter);
- }
- }
- function CW_DeclareOuterVariable(name) {
- if(typeof(__DeclareOuterVariable) === 'function') {
- __DeclareOuterVariable(name);
- }
- }
|