Make max width 90 columns

This commit is contained in:
sylvass
2021-11-05 11:15:47 -04:00
parent 2b1de9eebb
commit 1e4f4dc19a
8 changed files with 145 additions and 76 deletions
@@ -52,8 +52,6 @@ namespace openspace {
void setScale(float scalingFactor);
void setWebpageBorderColor(glm::ivec3 color);
// Communication with the web page
void executeJavascript(std::string script);
void sendIdToBrowser();
// Display
@@ -82,6 +80,9 @@ namespace openspace {
//void translate(glm::vec2 translation);
private:
// Communication with the web page
void executeJavascript(std::string script);
// Properties
properties::FloatProperty _verticalFov;
properties::StringProperty _skyTargetId;
@@ -79,7 +79,14 @@ namespace openspace {
bool _lockAfterAnimation{ false };
// Shader
UniformCache(modelTransform, viewProj, showCrosshair, showRectangle, lineWidth, dimensions, lineColor) _uniformCache;
UniformCache(
modelTransform,
viewProj,
showCrosshair,
showRectangle,
lineWidth,
dimensions,
lineColor) _uniformCache;
GLuint _vertexArray = 0;
GLuint _vertexBuffer = 0;