update
This commit is contained in:
parent
701bd39d23
commit
f6189af86f
11
.vscode/PythonImportHelper-v2-Completion.json
vendored
11
.vscode/PythonImportHelper-v2-Completion.json
vendored
@ -146,7 +146,16 @@
|
|||||||
"kind": 2,
|
"kind": 2,
|
||||||
"importPath": "src.glpy.tests",
|
"importPath": "src.glpy.tests",
|
||||||
"description": "src.glpy.tests",
|
"description": "src.glpy.tests",
|
||||||
"peekOfCode": "def glfw_window(width:int,height:int,title:str)->int:...",
|
"peekOfCode": "def glfw_window(width:int,height:int,title:str)->int:...\ndef glfw_black_window(width:int,height:int,title:str)->int:...",
|
||||||
|
"detail": "src.glpy.tests",
|
||||||
|
"documentation": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "glfw_black_window",
|
||||||
|
"kind": 2,
|
||||||
|
"importPath": "src.glpy.tests",
|
||||||
|
"description": "src.glpy.tests",
|
||||||
|
"peekOfCode": "def glfw_black_window(width:int,height:int,title:str)->int:...",
|
||||||
"detail": "src.glpy.tests",
|
"detail": "src.glpy.tests",
|
||||||
"documentation": {}
|
"documentation": {}
|
||||||
}
|
}
|
||||||
|
BIN
src/glew32.dll
Normal file
BIN
src/glew32.dll
Normal file
Binary file not shown.
Binary file not shown.
@ -1 +1,3 @@
|
|||||||
def glfw_window(width:int,height:int,title:str)->int:...
|
def glfw_window(width:int,height:int,title:str)->int:...
|
||||||
|
|
||||||
|
def glfw_black_window(width:int,height:int,title:str)->int:...
|
@ -1,5 +1,8 @@
|
|||||||
from pydoc import doc
|
from pydoc import doc
|
||||||
import glpy as gl
|
import glpy as gl
|
||||||
|
|
||||||
|
print(gl.tests.glfw_black_window(500,500,"Hello world"))
|
||||||
|
|
||||||
|
# print(gl.tests.glfw_window(width=500,height=500,title="I'm Zengtudor"))
|
||||||
|
|
||||||
|
|
||||||
print(gl.tests.glfw_window(width=500,height=500,title="I'm Zengtudor"))
|
|
||||||
|
Loading…
Reference in New Issue
Block a user