Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
make observe_points() pub
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Jan 1, 2024
1 parent 3a1dd32 commit 107730a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl PlotRange {
Self::observe(self.nz(), self.z_range.start, self.resolution)
}

fn observe_points(&self) -> Vec<Vector3> {
pub fn observe_points(&self) -> Vec<Vector3> {
match (self.nx(), self.ny(), self.nz()) {
(_, 1, 1) => self
.observe_x()
Expand Down

0 comments on commit 107730a

Please sign in to comment.