File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
source/matplot/axes_objects Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -424,9 +424,9 @@ namespace matplot {
424
424
return *this ;
425
425
}
426
426
427
- bool vectors::norm () const { return normalize_; }
427
+ bool vectors::normalize () const { return normalize_; }
428
428
429
- class vectors &vectors::norm (bool normalize) {
429
+ class vectors &vectors::normalize (bool normalize) {
430
430
normalize_ = normalize;
431
431
touch ();
432
432
return *this ;
Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ namespace matplot {
112
112
bool visible () const ;
113
113
class vectors &visible (bool visible);
114
114
115
- bool norm () const ;
116
- class vectors &norm (bool normalize);
115
+ bool normalize () const ;
116
+ class vectors &normalize (bool normalize);
117
117
118
118
public /* getters and setters bypassing the line_spec */ :
119
119
float line_width () const ;
You can’t perform that action at this time.
0 commit comments