eyepiece 0.8.1

A crate to generate star fields as seen with different telescopes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rand::Rng;
use rand_distr::{Cauchy, Distribution, Normal, Uniform};
use rand_seeder::{Seeder, SipRng};
use skyangle::SkyAngle;
use std::{env, time::Instant};

use super::{Objects, Star};

mod coordinate;
pub use coordinate::StarDistribution;
mod magnitude;
pub use magnitude::MagnitudeDistribution;