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
(v1.0) pkg> test CoolProp | |
Testing CoolProp | |
Resolving package versions... | |
Status `C:\Users\alaz\AppData\Local\Temp\jl_7A74.tmp\Manifest.toml` | |
[34da2185] Compat v1.3.0 | |
[e084ae63] CoolProp v0.0.0 [`C:\Users\alaz\.julia\dev\CoolProp`] | |
[682c06a0] JSON v0.19.0 | |
[2a0f44e3] Base64 [`@stdlib/Base64`] | |
[ade2ca70] Dates [`@stdlib/Dates`] | |
[8bb1440f] DelimitedFiles [`@stdlib/DelimitedFiles`] |
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
using GLVisualize, Colors, GeometryTypes, Reactive, GLAbstraction, GLWindow | |
import GLVisualize: mm | |
gc() | |
window = glscreen() | |
@async GLWindow.waiting_renderloop(window) | |
#Divide the screen area in two parts: editarea and plotarea | |
editarea, plotarea = x_partition_abs(window.area, 70mm) |
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
using Colors, GLVisualize, Reactive, GLAbstraction, GeometryTypes, GLWindow | |
window = glscreen() | |
@async GLWindow.waiting_renderloop(window) | |
plot_screen = Screen(window) | |
GLVisualize.add_screen(plot_screen) | |
#initial data | |
n = 200 |