Skip to content

Commit 988b23a

Browse files
committed
docs
1 parent 769803d commit 988b23a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docs/src/affine.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,17 @@ julia> f(f⁻¹(4))
9898

9999
julia> f⁻¹(f(4))
100100
4.0
101+
```
102+
103+
## `Affine`
104+
105+
Of particular interest (the whole point of all of this, really) is to have a natural way to work with affine transformations of measures. In accordance with the principle of "common things should have shorter names", we call this `Affine`.
106+
107+
The structure of `Affine` is relatively simple:
108+
109+
```julia
110+
struct Affine{N,M,T} <: AbstractMeasure
111+
f::AffineTransform{N,T}
112+
parent::M
113+
end
101114
```

0 commit comments

Comments
 (0)