Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
cfichtlscherer committed Jun 20, 2023
1 parent e8a412d commit 71b0e17
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/openmc/plot.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ class SlicePlotBase {

// Members
public:
Position origin_; //!< Plot origin in geometry
Position width_; //!< Plot width in geometry
PlotBasis basis_; //!< Plot basis (XY/XZ/YZ)
array<size_t, 3> pixels_; //!< Plot size in pixels
Position origin_; //!< Plot origin in geometry
Position width_; //!< Plot width in geometry
PlotBasis basis_; //!< Plot basis (XY/XZ/YZ)
array<size_t, 3> pixels_; //!< Plot size in pixels
bool slice_color_overlaps_; //!< Show overlapping cells?
int slice_level_ {-1}; //!< Plot universe level
private:
Expand Down Expand Up @@ -321,11 +321,11 @@ class ProjectionPlot : public PlottableInterface {
// loop:
static const int MAX_INTERSECTIONS = 1000000;

std::array<int, 2> pixels_; // pixel dimension of resulting image
std::array<int, 2> pixels_; // pixel dimension of resulting image
double horizontal_field_of_view_ {70.0}; // horiz. f.o.v. in degrees
Position camera_position_; // where camera is
Position look_at_; // point camera is centered looking at
Direction up_ {0.0, 0.0, 1.0}; // which way is up
Position camera_position_; // where camera is
Position look_at_; // point camera is centered looking at
Direction up_ {0.0, 0.0, 1.0}; // which way is up

// which color IDs should be wireframed. If empty, all cells are wireframed.
vector<int> wireframe_ids_;
Expand Down

0 comments on commit 71b0e17

Please sign in to comment.