forked from nmwsharp/polyscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
partial work on mega refactor without gc
- Loading branch information
Showing
29 changed files
with
393 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule geometry-central
deleted from
9574e2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
#pragma once | ||
|
||
#include "geometrycentral/vector3.h" | ||
|
||
using namespace geometrycentral; | ||
|
||
namespace polyscope { | ||
namespace gl { | ||
|
||
const Vector3 RGB_TEAL = {0., 178./255., 178./255.}; | ||
const Vector3 RGB_BLUE = {150./255., 154./255., 255./255.}; | ||
const Vector3 RGB_SKYBLUE = {152./255., 158./255., 200./255.}; | ||
const Vector3 RGB_ORANGE = {1., 0.5, 0.}; | ||
const Vector3 RGB_BLACK = {0., 0., 0.}; | ||
const Vector3 RGB_WHITE = {1., 1., 1.}; | ||
const Vector3 RGB_RED = {0.8, 0., 0.}; | ||
const Vector3 RGB_DARKGRAY = { .2, .2, .2 }; | ||
const Vector3 RGB_LIGHTGRAY = { .8, .8, .8 }; | ||
const Vector3 RGB_DARKRED = { .2, .0, .0 }; | ||
const Color3f RGB_TEAL = {0., 178./255., 178./255.}; | ||
const Color3f RGB_BLUE = {150./255., 154./255., 255./255.}; | ||
const Color3f RGB_SKYBLUE = {152./255., 158./255., 200./255.}; | ||
const Color3f RGB_ORANGE = {1., 0.5, 0.}; | ||
const Color3f RGB_BLACK = {0., 0., 0.}; | ||
const Color3f RGB_WHITE = {1., 1., 1.}; | ||
const Color3f RGB_RED = {0.8, 0., 0.}; | ||
const Color3f RGB_DARKGRAY = { .2, .2, .2 }; | ||
const Color3f RGB_LIGHTGRAY = { .8, .8, .8 }; | ||
const Color3f RGB_DARKRED = { .2, .0, .0 }; | ||
|
||
} // namespace gl | ||
} // namespace polyscope |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.