diff --git a/include/openmc/plot.h b/include/openmc/plot.h index 72661511982..225242c702d 100644 --- a/include/openmc/plot.h +++ b/include/openmc/plot.h @@ -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 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 pixels_; //!< Plot size in pixels bool slice_color_overlaps_; //!< Show overlapping cells? int slice_level_ {-1}; //!< Plot universe level private: @@ -321,11 +321,11 @@ class ProjectionPlot : public PlottableInterface { // loop: static const int MAX_INTERSECTIONS = 1000000; - std::array pixels_; // pixel dimension of resulting image + std::array 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 wireframe_ids_;