-
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Intensity to height converter with better artistic style (#699)
* intensity to height image converter * wave converter better artistic style * lowered maximum wave intensity, centered wave on original line, added comments to explain variables. --------- Co-authored-by: Dan Royer <[email protected]>
- Loading branch information
1 parent
9dbcd43
commit a40e1ff
Showing
3 changed files
with
32 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,21 @@ | |
<!DOCTYPE language> | ||
<language> | ||
|
||
<!-- | ||
<!-- | ||
To facilitate the validation and avoid duplicated or empty key (//language/string/key) , | ||
please try to get language_no_dup_key.xsd from https://github.com/MarginallyClever/Makelangelo-software/blob/b1f418fc63d70f24288d490dccadc97d97a775e9/src/test/resources/translator/language_no_dup_key.xsd | ||
and change the begining of the file with : | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="language_no_dup_key.xsd" > | ||
--> | ||
<meta> | ||
<name>English</name> | ||
<author>Dan Royer ([email protected])</author> | ||
</meta> | ||
<string><key>BorderName</key><value>Outline paper</value></string> | ||
<meta> | ||
<name>English</name> | ||
<author>Dan Royer ([email protected])</author> | ||
</meta> | ||
|
||
<string><key>BorderName</key><value>Outline paper</value></string> | ||
<string><key>Generator_TruchetTiles.Name</key><value>Truchet Tiles</value></string> | ||
<string><key>Generator_TruchetTiles.LineSpacing</key><value>Space between lines (mm)</value></string> | ||
<string><key>Generator_TruchetTiles.LinesPerTile</key><value>Lines per tile</value></string> | ||
|
@@ -261,9 +261,9 @@ | |
|
||
<string><key>TurtleGenerators.LearnMore.Link.Text</key><value>Learn more</value></string> | ||
<string><key>LoadScratch3.foreverNotAllowed</key><value>Forever loops are forever forbidden.</value></string> | ||
<string><key>SaveGCode.splitGCodeTitle</key><value>Many colors detected</value></string> | ||
<string><key>SaveGCode.splitGCodeTitle</key><value>Many colors detected</value></string> | ||
|
||
<string><key>Converter_CMYK_Circles.name</key><value>CMYK circles</value></string> | ||
<string><key>Converter_CMYK_Circles.name</key><value>CMYK circles</value></string> | ||
<string><key>Converter_CMYK_Circles.maxCircleSize</key><value>max circle size</value></string> | ||
|
||
<string><key>Converter_EdgeDetection.name</key><value>Edge detection</value></string> | ||
|
@@ -387,6 +387,6 @@ | |
|
||
<string><key>Converter_IntensityToHeight.name</key><value>Intensity to height</value></string> | ||
<string><key>Converter_IntensityToHeight.spacing</key><value>Wave spacing</value></string> | ||
<string><key>Converter_IntensityToHeight.maxHeight</key><value>Wave height</value></string> | ||
<string><key>Converter_IntensityToHeight.sampleRate</key><value>Sample rate</value></string> | ||
</language> | ||
<string><key>Converter_IntensityToHeight.waveIntensity</key><value>Wave intensity</value></string> | ||
</language> |