1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use geo::CoordFloat;

use crate::projection::ScaleSet;

use super::Builder;

impl<PCNU, T> ScaleSet for Builder<PCNU, T>
where
    T: CoordFloat,
{
    type T = T;

    #[inline]
    fn scale_set(&mut self, k: T) -> &mut Self {
        self.k = k;
        self.reset()
    }
}