Numworks Epsilon  1.4.1
Graphing Calculator Operating System
product_layout.h
Go to the documentation of this file.
1 #ifndef POINCARE_PRODUCT_LAYOUT_H
2 #define POINCARE_PRODUCT_LAYOUT_H
3 
4 #include "sequence_layout.h"
5 
6 namespace Poincare {
7 
8 class ProductLayout : public SequenceLayout {
9 public:
11 protected:
12  void render(KDContext * ctx, KDPoint p, KDColor expressionColor, KDColor backgroundColor) override;
13 private:
14  constexpr static KDCoordinate k_lineThickness = 1;
15 };
16 
17 }
18 
19 #endif
int16_t KDCoordinate
Definition: coordinate.h:6
void render(KDContext *ctx, KDPoint p, KDColor expressionColor, KDColor backgroundColor) override
SequenceLayout(ExpressionLayout *lowerBoundLayout, ExpressionLayout *upperBoundLayout, ExpressionLayout *argumentLayout)
Definition: point.h:6
Definition: color.h:6