This file contains hidden or 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
import numpy as np | |
import moderngl | |
from moderngl_window import geometry | |
from ported._example import Example | |
from pathlib import Path | |
import os | |
class SimpleColorTriangle(Example): | |
gl_version = (3, 3) | |
aspect_ratio = 16 / 9 |