diff --git a/.classpath b/.classpath index fc14556..ff10fb7 100644 --- a/.classpath +++ b/.classpath @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83ccc54 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/build/ +/bin/ diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index 265925c..eecdf4f 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,14 +1,14 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.compliance=1.8 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.7 +org.eclipse.jdt.core.compiler.source=1.8 org.eclipse.jdt.core.formatter.align_type_members_on_columns=false org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 diff --git a/README b/README deleted file mode 100644 index 1d75417..0000000 --- a/README +++ /dev/null @@ -1,21 +0,0 @@ -README -====== - -This plugin is for simplyfying areas by performing following operations: -- average nodes closer than simplify-area.distance parameter. Default is 0.2 (m). -- remove every node for which is true: - - node lies on obtuse angle configured with parameter simplify-area.angle. Default 10.0 (degrees). - - node removal would cause area size change greater than specified by simplify-area.area parameter. Default is 5.0 (m^2). - -Operation works not only on the areas but also on the paths. Tagged nodes and nodes that are referenced are not removed. If the path is not closed, then first and last node is also not removed. -Plugin can also remove node that is defined as the connecting node of the closed path. If such a node is removed then another node is used for this purpose. - -After selecting one or more areas and/or paths you can use shortcut Shift+A or select the action from the menu Tools -> Simplify Area. - -The original purpose of this tool is to simplify impored buildings from the Slovak Cadastre Portal "KaPor" where buildings contain many redundant nodes. -Built-in Simplify Way operation has been shown as inappropriate for this. - -Enjoy! - -Author: Martin Zdila - diff --git a/bin/andrei/josm/plugin/color/ColorAction.class b/bin/andrei/josm/plugin/color/ColorAction.class deleted file mode 100644 index cd0d520..0000000 Binary files a/bin/andrei/josm/plugin/color/ColorAction.class and /dev/null differ diff --git a/bin/andrei/josm/plugin/color/ColorDialog$1.class b/bin/andrei/josm/plugin/color/ColorDialog$1.class deleted file mode 100644 index 92f29a2..0000000 Binary files a/bin/andrei/josm/plugin/color/ColorDialog$1.class and /dev/null differ diff --git a/bin/andrei/josm/plugin/color/ColorDialog$2.class b/bin/andrei/josm/plugin/color/ColorDialog$2.class deleted file mode 100644 index 28efc2e..0000000 Binary files a/bin/andrei/josm/plugin/color/ColorDialog$2.class and /dev/null differ diff --git a/bin/andrei/josm/plugin/color/ColorDialog.class b/bin/andrei/josm/plugin/color/ColorDialog.class deleted file mode 100644 index dadac78..0000000 Binary files a/bin/andrei/josm/plugin/color/ColorDialog.class and /dev/null differ diff --git a/bin/andrei/josm/plugin/color/ColorPlugin.class b/bin/andrei/josm/plugin/color/ColorPlugin.class deleted file mode 100644 index 0c7c2a1..0000000 Binary files a/bin/andrei/josm/plugin/color/ColorPlugin.class and /dev/null differ diff --git a/build.xml b/build.xml index 083485a..5260aca 100644 --- a/build.xml +++ b/build.xml @@ -3,7 +3,7 @@ - +