Skip to content

Commit

Permalink
Added README for graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
Zelaux committed Oct 1, 2023
1 parent e1cc776 commit 9a1ad5e
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ dependencies{
# Exported modules:

- betterCommandHandler `betterCommandHandler`
- graphics
- dashDraw `graphics-dashDraw`
- draw3d `graphics-draw3d`
- drawText `graphics-drawText`
- extendedDraw `graphics-extendedDraw`
- g3d `graphics-d3g`
- [graphics](graphics%2FREADME.md)
- [dashDraw](graphics%2FREADME.md#dashDraw) `graphics-dashDraw`
- [draw3d](graphics%2FREADME.md#draw3d) `graphics-draw3d`
- [drawText](graphics%2FREADME.md#drawText) `graphics-drawText`
- [extendedDraw](graphics%2FREADME.md#extendedDraw) `graphics-extendedDraw`
- [g3d](graphics%2Fg3d%2FREADME.md) `graphics-d3g`
- [settings](settings%2FREADME.md) `settings`
- [ui](ui%2FREADME.md)
- [components](ui%2FREADME.md#components) `ui-components`
Expand Down
62 changes: 62 additions & 0 deletions graphics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Graphics
- [dashDraw](#dashDraw)
- [draw3d](#draw3d)
- [drawText](#drawText)
- [extendedDraw](#extendedDraw)
- [g3d](#g3d)

## <a name="dashDraw"></a> DashDraw

###### Full name: `graphics-dashDraw`

### Adds
- [DashLine](dashDraw%2Fsrc%2Farclibrary%2Fgraphics%2FDashLine.java)

----

## <a name="draw3d"></a> Draw3d

###### Full name: `graphics-draw3d`


### Adds
- [Draw3d](draw3d%2Fsrc%2Farclibrary%2Fgraphics%2FDraw3d.java)

### Dependencies
```groovy
"com.github.Anuken.Arc:g3d:$arcVersion"
```

----

## <a name="drawText"></a> DrawText

###### Full name: `graphics-drawText`

### Adds
- [DrawText](drawText%2Fsrc%2Farclibrary%2Fgraphics%2FDrawText.java)

----

## <a name="extendedDraw"></a> ExtendedDraw

###### Full name: `graphics-extendedDraw`

### Adds
- [EDraw](extendedDraw%2Fsrc%2Farclibrary%2Fgraphics%2FEDraw.java)
- [EFill](extendedDraw%2Fsrc%2Farclibrary%2Fgraphics%2FEFill.java)
- [ELines](extendedDraw%2Fsrc%2Farclibrary%2Fgraphics%2FELines.java)

----

## <a name="g3d"></a> g3d

###### Full name: `graphics-g3d`

[More information](g3d%2FREADME.md)
### Dependencies
```groovy
"com.github.Anuken.Arc:g3d:$arcVersion"
```

----
4 changes: 3 additions & 1 deletion graphics/drawText/src/arclibrary/graphics/DrawText.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
import org.jetbrains.annotations.*;

import java.util.*;

/**
* Draws text on screen without label or other stuff
* */
public class DrawText{
@Nullable
public static Font defaultFont;
Expand Down

0 comments on commit 9a1ad5e

Please sign in to comment.