Symbols on lines doc improvements #743

This commit is contained in:
Emux 2019-10-01 09:41:58 +03:00
parent 992d9c8e66
commit 1294ff9fea
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3
2 changed files with 4 additions and 0 deletions

View File

@ -237,6 +237,8 @@
<xs:attribute name="symbol-width" type="xs:positiveInteger" use="optional" />
<xs:attribute name="symbol-height" type="xs:positiveInteger" use="optional" />
<xs:attribute name="symbol-percent" type="xs:positiveInteger" use="optional" />
<!-- symbols on lines -->
<xs:attribute name="billboard" default="false" type="xs:boolean" use="optional" />
<xs:attribute name="repeat" default="false" type="xs:boolean" use="optional" />
<xs:attribute name="repeat-gap" default="200" type="xs:float" use="optional" />

View File

@ -39,6 +39,7 @@ public final class SymbolStyle extends RenderStyle<SymbolStyle> {
public final int symbolHeight;
public final int symbolPercent;
// Symbols on lines
public final boolean billboard;
public final boolean repeat;
public final float repeatStart;
@ -122,6 +123,7 @@ public final class SymbolStyle extends RenderStyle<SymbolStyle> {
public int symbolHeight;
public int symbolPercent;
// Symbols on lines
public boolean billboard;
public boolean repeat;
public float repeatStart;