1
0
mirror of https://github.com/mum4k/termdash.git synced 2025-04-27 13:48:49 +08:00

Moving numbers to internal subdirectory.

This commit is contained in:
Jakub Sobon 2019-02-23 21:16:13 -05:00
parent 923d57f442
commit 55efbe07fe
No known key found for this signature in database
GPG Key ID: F2451A77FB05D3B7
15 changed files with 12 additions and 12 deletions

View File

@ -19,7 +19,7 @@ import (
"fmt" "fmt"
"image" "image"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// Size returns the size of the provided area. // Size returns the size of the provided area.

View File

@ -22,7 +22,7 @@ import (
"github.com/mum4k/termdash/internal/canvas/braille" "github.com/mum4k/termdash/internal/canvas/braille"
"github.com/mum4k/termdash/internal/cell" "github.com/mum4k/termdash/internal/cell"
"github.com/mum4k/termdash/numbers/trig" "github.com/mum4k/termdash/internal/numbers/trig"
) )
// BrailleCircleOption is used to provide options to BrailleCircle. // BrailleCircleOption is used to provide options to BrailleCircle.

View File

@ -22,7 +22,7 @@ import (
"github.com/mum4k/termdash/internal/canvas/braille" "github.com/mum4k/termdash/internal/canvas/braille"
"github.com/mum4k/termdash/internal/cell" "github.com/mum4k/termdash/internal/cell"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// braillePixelChange represents an action on a pixel on the braille canvas. // braillePixelChange represents an action on a pixel on the braille canvas.

View File

@ -23,7 +23,7 @@ import (
"math" "math"
"github.com/mum4k/termdash/internal/draw/segdisp/segment" "github.com/mum4k/termdash/internal/draw/segdisp/segment"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// hvSegType maps horizontal and vertical segments to their type. // hvSegType maps horizontal and vertical segments to their type.

View File

@ -21,7 +21,7 @@ import (
"math" "math"
"sort" "sort"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// CirclePointAtAngle given an angle in degrees and a circle midpoint and // CirclePointAtAngle given an angle in degrees and a circle midpoint and

View File

@ -20,7 +20,7 @@ import (
"image" "image"
"github.com/mum4k/termdash/internal/canvas/braille" "github.com/mum4k/termdash/internal/canvas/braille"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// startEndAngles given progress indicators and the desired start angle and // startEndAngles given progress indicators and the desired start angle and

View File

@ -27,7 +27,7 @@ import (
"github.com/mum4k/termdash/internal/canvas/braille" "github.com/mum4k/termdash/internal/canvas/braille"
"github.com/mum4k/termdash/internal/cell/runewidth" "github.com/mum4k/termdash/internal/cell/runewidth"
"github.com/mum4k/termdash/internal/draw" "github.com/mum4k/termdash/internal/draw"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
"github.com/mum4k/termdash/terminalapi" "github.com/mum4k/termdash/terminalapi"
"github.com/mum4k/termdash/widgetapi" "github.com/mum4k/termdash/widgetapi"
) )

View File

@ -20,7 +20,7 @@ import (
"fmt" "fmt"
"github.com/mum4k/termdash/internal/canvas/braille" "github.com/mum4k/termdash/internal/canvas/braille"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// YScaleMode determines whether the Y scale is anchored to the zero value. // YScaleMode determines whether the Y scale is anchored to the zero value.

View File

@ -20,7 +20,7 @@ import (
"fmt" "fmt"
"math" "math"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// Value represents one value. // Value represents one value.

View File

@ -27,7 +27,7 @@ import (
"github.com/mum4k/termdash/internal/canvas/braille" "github.com/mum4k/termdash/internal/canvas/braille"
"github.com/mum4k/termdash/internal/cell" "github.com/mum4k/termdash/internal/cell"
"github.com/mum4k/termdash/internal/draw" "github.com/mum4k/termdash/internal/draw"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
"github.com/mum4k/termdash/terminalapi" "github.com/mum4k/termdash/terminalapi"
"github.com/mum4k/termdash/widgetapi" "github.com/mum4k/termdash/widgetapi"
"github.com/mum4k/termdash/widgets/linechart/axes" "github.com/mum4k/termdash/widgets/linechart/axes"

View File

@ -22,7 +22,7 @@ import (
"github.com/mum4k/termdash/internal/mouse" "github.com/mum4k/termdash/internal/mouse"
"github.com/mum4k/termdash/internal/mouse/button" "github.com/mum4k/termdash/internal/mouse/button"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
"github.com/mum4k/termdash/terminalapi" "github.com/mum4k/termdash/terminalapi"
"github.com/mum4k/termdash/widgets/linechart/axes" "github.com/mum4k/termdash/widgets/linechart/axes"
) )

View File

@ -21,7 +21,7 @@ import (
"fmt" "fmt"
"github.com/mum4k/termdash/internal/cell/runewidth" "github.com/mum4k/termdash/internal/cell/runewidth"
"github.com/mum4k/termdash/numbers" "github.com/mum4k/termdash/internal/numbers"
) )
// sparks are the characters used to draw the SparkLine. // sparks are the characters used to draw the SparkLine.