Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| """ | |
| create_casing.py | |
| Tomoyuki Nohara 2016/06/01 | |
| TODO: Add Material | |
| """ | |
| import bpy |
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
| #! coding:utf-8 | |
| """ | |
| a | |
| Created by 0160929 on 2016/03/18 10:40 | |
| """ | |
| from PySide.QtNetwork import QNetworkProxy, QSslConfiguration, QSslCertificate, QSsl | |
| __version__ = '0.2' | |
| __app_name__ = 'Recomen' |
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
| # coding:utf-8 | |
| """PySide port of the opengl/samplebuffers example from Qt v4.x""" | |
| import struct | |
| from OpenGL import GL | |
| from OpenGL import GLU | |
| # from OpenGL import GLUT | |
| from OpenGL.GLUT import * |
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
| ** 累乗計算 | |
| def ruijou(self, x): | |
| from numpy import log2, floor | |
| y0 = log2(x) | |
| # 最小t | |
| p = floor(y0) | |
| return int(2 ** p) |
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
| #!/usr/bin/env python | |
| """PySide port of the opengl/samplebuffers example from Qt v4.x""" | |
| import sys | |
| import math | |
| from PySide import QtCore, QtGui, QtOpenGL | |
| try: | |
| from OpenGL import GL |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| ptime.py - Precision time function made os-independent (should have been taken care of by python) | |
| Copyright 2010 Luke Campagnola | |
| Distributed under MIT/X11 license. See license.txt for more infomation. | |
| from pyqtgraph.ptime import time | |
| now = time() | |
| dt = now - lastTime |
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
| #! coding:utf-8 | |
| """ | |
| a | |
| Created by 0160929 on 2016/03/18 10:40 | |
| """ | |
| from PySide.QtNetwork import QNetworkProxy | |
| __version__ = '0.2' | |
| __app_name__ = 'Recomen' |
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
| /* ****************************************************** | |
| * | |
| * StaggeredGridJS | |
| * スタッガード格子を書くjsスクリプト | |
| * | |
| * [ -- 使い方 -- ] | |
| * <div class="StaggeredGridJS" I="4" J="4" pml=0 w=500 h=500></div> | |
| * <p>図. スタッガード格子</p> | |
| * | |
| * [ -- プロパティ -- ] |