Skip to content

Commit

Permalink
run mddoc on src/chroma.nim
Browse files Browse the repository at this point in the history
  • Loading branch information
pietroppeter committed Jun 27, 2020
1 parent 786016a commit 98e97f0
Showing 1 changed file with 99 additions and 3 deletions.
102 changes: 99 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,108 @@ Returns colors as "(r, g, b, a)".
proc `$`(c: Color): string
```

## **proc** hash
## **func** hash

Hahses a color - used in tables.
Hashes a Color - used in tables.

```nim
proc hash(c: Color): Hash
func hash(c: Color): Hash
```

## **func** hash

Hashes a ColorRGB - used in tables.

```nim
func hash(c: ColorRGB): Hash
```

## **func** hash

Hashes a ColorRGB - used in tables.

```nim
func hash(c: ColorRGBA): Hash
```

## **func** hash

Hashes a ColorCMY - used in tables.

```nim
func hash(c: ColorCMY): Hash
```

## **func** hash

Hashes a ColorCMYK - used in tables.

```nim
func hash(c: ColorCMYK): Hash
```

## **func** hash

Hashes a ColorHSL - used in tables.

```nim
func hash(c: ColorHSL): Hash
```

## **func** hash

Hashes a ColorHSV - used in tables.

```nim
func hash(c: ColorHSV): Hash
```

## **func** hash

Hashes a ColorYUV - used in tables.

```nim
func hash(c: ColorYUV): Hash
```

## **func** hash

Hashes a ColorXYZ - used in tables.

```nim
func hash(c: ColorXYZ): Hash
```

## **func** hash

Hashes a ColorLAB - used in tables.

```nim
func hash(c: ColorLAB): Hash
```

## **func** hash

Hashes a ColorPolarLAB - used in tables.

```nim
func hash(c: ColorPolarLAB): Hash
```

## **func** hash

Hashes a ColorLUV - used in tables.

```nim
func hash(c: ColorLUV): Hash
```

## **func** hash

Hashes a ColorPolarLUV - used in tables.

```nim
func hash(c: ColorPolarLUV): Hash
```

## **proc** almostEqual
Expand Down

0 comments on commit 98e97f0

Please sign in to comment.