diff options
author | Sunil Shetye | 2018-06-18 17:08:56 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-06-18 17:08:56 +0530 |
commit | 0fd33c776a03e3b9ad2267e4f3fbb2c7bcbbb92a (patch) | |
tree | 6ae63f7633d80f9a70be43ebe789eb0c3a3ec364 /js/Electrical/MOTOR.js | |
parent | 8e6e9558ba4963ea71b7a6efc11e0b44e7c9040a (diff) | |
download | sci2js-0fd33c776a03e3b9ad2267e4f3fbb2c7bcbbb92a.tar.gz sci2js-0fd33c776a03e3b9ad2267e4f3fbb2c7bcbbb92a.tar.bz2 sci2js-0fd33c776a03e3b9ad2267e4f3fbb2c7bcbbb92a.zip |
change order of functions
Diffstat (limited to 'js/Electrical/MOTOR.js')
-rw-r--r-- | js/Electrical/MOTOR.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/Electrical/MOTOR.js b/js/Electrical/MOTOR.js index 794262aa..7ffefd65 100644 --- a/js/Electrical/MOTOR.js +++ b/js/Electrical/MOTOR.js @@ -1,10 +1,5 @@ /* autogenerated from "macros/Electrical/MOTOR.sci" */ function MOTOR() { -MOTOR.prototype.get = function MOTOR() { -} -MOTOR.prototype.set = function MOTOR() { -x=arg1; -} MOTOR.prototype.define = function MOTOR() { model=scicos_model(); model.out=[1,1]; @@ -20,4 +15,9 @@ x.graphics.in_implicit=["I"]; } MOTOR.prototype.details = function MOTOR() { } +MOTOR.prototype.get = function MOTOR() { +} +MOTOR.prototype.set = function MOTOR() { +x=arg1; +} } |