unit

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2024 License: MIT, Unlicense Imports: 1 Imported by: 680

Documentation

Overview

Package unit implements device independent units.

Device independent pixel, or dp, is the unit for sizes independent of the underlying display device.

Scaled pixels, or sp, is the unit for text sizes. An sp is like dp with text scaling applied.

Finally, pixels, or px, is the unit for display dependent pixels. Their size vary between platforms and displays.

To maintain a constant visual size across platforms and displays, always use dps or sps to define user interfaces. Only use pixels for derived values.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Dp

type Dp float32

Dp represents device independent pixels. 1 dp will have the same apparent size across platforms and display resolutions.

type Metric

type Metric struct {
	// PxPerDp is the device-dependent pixels per dp.
	PxPerDp float32
	// PxPerSp is the device-dependent pixels per sp.
	PxPerSp float32
}

Metric converts Values to device-dependent pixels, px. The zero value represents a 1-to-1 scale from dp, sp to pixels.

func (Metric) Dp

func (c Metric) Dp(v Dp) int

Dp converts v to pixels, rounded to the nearest integer value.

func (Metric) DpToSp

func (c Metric) DpToSp(v Dp) Sp

DpToSp converts v dp to sp.

func (Metric) PxToDp

func (c Metric) PxToDp(v int) Dp

PxToDp converts v px to dp.

func (Metric) PxToSp

func (c Metric) PxToSp(v int) Sp

PxToSp converts v px to sp.

func (Metric) Sp

func (c Metric) Sp(v Sp) int

Sp converts v to pixels, rounded to the nearest integer value.

func (Metric) SpToDp

func (c Metric) SpToDp(v Sp) Dp

SpToDp converts v sp to dp.

type Sp

type Sp float32

Sp is like UnitDp but for font sizes.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL