move executables to reparate folder

This commit is contained in:
Jindra Petřík
2023-03-05 16:36:38 +01:00
parent 91d9e5202a
commit 181e98f137
3 changed files with 3 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.jpexs.decompiler.flash.gui;
package com.jpexs.build;
import com.jpexs.helpers.utf8.Utf8Helper;
import com.jpexs.helpers.utf8.Utf8PrintWriter;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.jpexs.decompiler.flash.gui;
package com.jpexs.build;
import com.jpexs.helpers.Helper;
import java.io.File;

View File

@@ -895,14 +895,7 @@ public class TransformPanel extends JPanel {
} catch (ParseException ex) {
throw new NumberFormatException();
}
}
public static void main(String[] args) {
System.out.println("20 twip to px =" + convertUnit(20, Unit.TWIP, Unit.PX));
System.out.println("1 turn to deg =" + convertUnit(1, Unit.TURN, Unit.DEG));
System.out.println("1 deg to rad =" + convertUnit(1, Unit.DEG, Unit.RAD));
System.out.println("1 deg to grad =" + convertUnit(1, Unit.DEG, Unit.GRAD));
}
}
}
class RegistrationPointPanel extends JPanel {