aboutsummaryrefslogtreecommitdiffstats
path: root/style/style.go
blob: 5b7495208da6abd75ed68d66d8e65c11eb24ffd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package style

import (
	"golang.org/x/exp/shiny/unit"
	"golang.org/x/image/math/fixed"
)

// TODO
type Style struct {
}

// Convert implements the golang.org/x/exp/shiny/unit.Converter
// interface.
func (s *Style) Convert(v unit.Value, to unit.Unit) unit.Value {
	// TODO
}

// Pixels implements the golang.org/x/exp/shiny/unit.Converter
// interface.
func (s *Style) Pixels(v unit.Value) fixed.Int26_6 {
	// TODO
}