text
stringlengths
0
1.05M
meta
dict
import md5 import hashlib import time start_time = time.time() secretKey = 'ugkcyxxp' possibleValue = 0 evaluatedValue = None # Part 1 i = 0 c = 0 r = [] while(1): evaluatedValue = (secretKey + str(i)) possibleValue = hashlib.md5(secretKey + str(i)).hexdigest() if possibleValue.startswith("00000"): ...
{ "repo_name": "gdorion/advent-of-code", "path": "2016/python/day5.py", "copies": "1", "size": "1094", "license": "mit", "hash": 5577526859986364000, "line_mean": 16.9344262295, "line_max": 70, "alpha_frac": 0.5612431444, "autogenerated": false, "ratio": 3.0304709141274238, "config_test": false,...
import regex as re niceStringsCount = 0 azRE = re.compile("[A-Za-z]+") doubleLetterRE = re.compile(r"([a-z][a-z])") notContainingList = re.compile("[A-Za-z]+") repeatedChars = re.compile("[A-Za-z]+") with open('data.txt') as f: for line in f: match = False matchString = line + " -> " i...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day5/words2.py", "copies": "1", "size": "1741", "license": "mit", "hash": -3153067016816860000, "line_mean": 28.5084745763, "line_max": 133, "alpha_frac": 0.4732912119, "autogenerated": false, "ratio": 3.993119266055046, "config_test"...
import re class Character(object): def __init__(self, name, damage, armor, hitpoints): self.name = name self.damage = int(damage) self.armor = int(armor) self.lifepoints = int(hitpoints) self.hitpoints = int(hitpoints) self.gear = [] def __eq__(self, other): ...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day21/day21.py", "copies": "1", "size": "2920", "license": "mit", "hash": -3928061947713521000, "line_mean": 21.9921259843, "line_max": 87, "alpha_frac": 0.5726027397, "autogenerated": false, "ratio": 3.443396226415094, "config_test":...
import re def hasPairs(input): pairs = [] for idx, c in enumerate(input): if idx + 1 < len(input): pairs.append(c + input[idx+1]) num = 0 for idx, pair in enumerate(pairs): if pair[0] == pair[1]: if idx > 0 and pair == pairs[idx-1]: continue ...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day11/password.py", "copies": "1", "size": "2083", "license": "mit", "hash": 5359272503867445000, "line_mean": 22.9425287356, "line_max": 83, "alpha_frac": 0.5568891023, "autogenerated": false, "ratio": 3.2546875, "config_test": false...
import re niceStringsCount = 0 azRE = re.compile("[A-Za-z]+") vowelRE = re.compile("[aeiou]") doubleLetterRE = re.compile(r"[a-z]*([a-z])\1([a-z])*") notContainingList = ['ab', 'cd', 'pq', 'xy'] with open('data.txt') as f: for line in f: match = False matchString = line + " -> " if azR...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day5/words.py", "copies": "1", "size": "1303", "license": "mit", "hash": 6357641019506664000, "line_mean": 26.1458333333, "line_max": 74, "alpha_frac": 0.5111281658, "autogenerated": false, "ratio": 3.8664688427299705, "config_test": ...
nodes = [] wires = [] def is_number(s): try: int(s) return True except ValueError: return False def updatedWire(wire): global wires for w in wires: if w.name == wire.name: return w return wire class Wire(object): def __init__(self, value): ...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day7/bitwise.py", "copies": "1", "size": "5740", "license": "mit", "hash": -3290555153140167700, "line_mean": 25.6976744186, "line_max": 126, "alpha_frac": 0.581358885, "autogenerated": false, "ratio": 3.8088918380889183, "config_test...
numberRow = 999 numberCol = 999 matrix = [] for i in range(0,numberRow+1): row = [] for j in range(0,numberCol + 1): row.append(0) matrix.append(row) def printMatrix(): for row in matrix: print str(row) + "\n" def findX(coordinate): return int(coordinate.split(',')[0]) def findY...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day6/grid2.py", "copies": "1", "size": "1708", "license": "mit", "hash": 3979939311468477400, "line_mean": 23.4, "line_max": 76, "alpha_frac": 0.5702576112, "autogenerated": false, "ratio": 3.128205128205128, "config_test": false, "...
puzzleInput = 'L4, L1, R4, R1, R1, L3, R5, L5, L2, L3, R2, R1, L4, R5, R4, L2, R1, R3, L5, R1, L3, L2, R5, L4, L5, R1, R2, L1, R5, L3, R2, R2, L1, R5, R2, L1, L1, R2, L1, R1, L2, L2, R4, R3, R2, L3, L188, L3, R2, R54, R1, R1, L2, L4, L3, L2, R3, L1, L1, R3, R5, L1, R5, L1, L1, R2, R4, R4, L5, L4, L1, R2, R4, R5, L2, L...
{ "repo_name": "gdorion/advent-of-code", "path": "2016/python/day1.py", "copies": "1", "size": "2599", "license": "mit", "hash": 9102810039769261000, "line_mean": 33.1973684211, "line_max": 796, "alpha_frac": 0.4282416314, "autogenerated": false, "ratio": 2.258036490008688, "config_test": false,...
raw = open('data.txt').read().splitlines() instructions = [] for l in raw: components = l.split(' ') ins = components[0] rid = components[1].replace(',','') offset = '+0' if ins == 'jmp': offset = components[1] elif ins in ['jio', 'jie']: offset = components[2] instructio...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day23/day23.py", "copies": "1", "size": "1494", "license": "mit", "hash": 3552064069316180000, "line_mean": 20.652173913, "line_max": 83, "alpha_frac": 0.5281124498, "autogenerated": false, "ratio": 3.2198275862068964, "config_test": ...
raw = open('day12.txt').read().splitlines() registers = {'a': 0, 'b': 0, 'c' : 1, 'd' : 0} instructions = [] for l in raw: components = l.split(' ') ins = components[0] rid = components[1] offset = 0 if len(components) > 2: offset = components[2] instructions.append([ins, rid, offset...
{ "repo_name": "gdorion/advent-of-code", "path": "2016/python/day12.py", "copies": "1", "size": "1491", "license": "mit", "hash": -8043422877539764000, "line_mean": 20, "line_max": 90, "alpha_frac": 0.523138833, "autogenerated": false, "ratio": 3.276923076923077, "config_test": false, "has_no_...
bosshp = 58 spellcost = [53,73,113,173,229] bossdam = 9 best = 99999 def play(bosshp, playerhp, mana, cost, spellshield, spellpoison, spellrecharge, spell): global spellcost, best, bossdam # Player if spell == 0: bosshp -= 4 if spell == 1: playerhp+=2 bosshp -=2 if spel...
{ "repo_name": "gdorion/advent-of-code", "path": "2015/python/Day22/day22v2.py", "copies": "1", "size": "2344", "license": "mit", "hash": -7014457771224008000, "line_mean": 19.9285714286, "line_max": 125, "alpha_frac": 0.5341296928, "autogenerated": false, "ratio": 3.334281650071124, "config_tes...
#!/bin/env python """ A gdb-compatible frontend for lldb that implements just enough commands to run the tests in the debuginfo-tests repository with lldb. """ # ---------------------------------------------------------------------- # Auto-detect lldb python module. import commands, platform, os, sys try: # Just ...
{ "repo_name": "endlessm/chromium-browser", "path": "third_party/llvm/debuginfo-tests/llgdb-tests/llgdb.py", "copies": "3", "size": "6099", "license": "bsd-3-clause", "hash": 6114799018330345000, "line_mean": 36.6481481481, "line_max": 89, "alpha_frac": 0.5915723889, "autogenerated": false, "ratio...
#!/bin/env python # All possible columns: # extract_fastqc = ["Conventional base calls", "Encoding", "Total Sequences", "Filtered Sequences", "Sequence length", "%GC"] # extract_summary = ["Basic Statistics", "Per base sequence quality", "Per sequence quality scores", "Per base sequence content", "Per base GC content"...
{ "repo_name": "jessicachung/rna_seq_pipeline", "path": "scripts/fastqc_parse.py", "copies": "1", "size": "9670", "license": "mit", "hash": 8289421829303068000, "line_mean": 32.5763888889, "line_max": 309, "alpha_frac": 0.5310237849, "autogenerated": false, "ratio": 3.7743950039032006, "config_t...
#!/bin/env python # All possible columns: ''' extract_fastqc = [ "Conventional base calls", "Encoding", "Total Sequences", "Filtered Sequences", "Sequence length", "%GC"] extract_alignment = [ "Number of left reads", "Number of right reads", "Paired reads with only one aligne...
{ "repo_name": "jessicachung/rna_seq_pipeline", "path": "scripts/qc_parse.py", "copies": "1", "size": "11473", "license": "mit", "hash": 8374930441185540000, "line_mean": 29.5132978723, "line_max": 79, "alpha_frac": 0.5191318748, "autogenerated": false, "ratio": 3.8141622340425534, "config_test"...
""" analysis.py Functions for analysing peaks against features, and vice versa: - find_nearest_features - find_nearest_peaks """ import os import logging from . import distances from .Features import FeatureSet from .Peaks import PeakSet ####################################################################### # Anal...
{ "repo_name": "fls-bioinformatics-core/RnaChipIntegrator", "path": "rnachipintegrator/analysis.py", "copies": "1", "size": "6867", "license": "artistic-2.0", "hash": -3080736861426387500, "line_mean": 34.0357142857, "line_max": 80, "alpha_frac": 0.619338867, "autogenerated": false, "ratio": 4.464...
#!/bin/env python """ Analyze NN potential with drawing NN structure graph. Usage: analyze.py [options] analyze.py draw [options] Options: -h,--help Show this message and exit. -w Show weight values. [default: False] -t THRESHOLD Threshold value multiplied to max edge for omitting crit...
{ "repo_name": "ryokbys/nap", "path": "nappy/nn/analyze.py", "copies": "1", "size": "10397", "license": "mit", "hash": 6131267477675612000, "line_mean": 32.6472491909, "line_max": 104, "alpha_frac": 0.5131287872, "autogenerated": false, "ratio": 2.650267652306908, "config_test": false, "has_no...
#!/bin/env python """ An example CloudBolt post-group-creation hook script that adds the user permissions from its parent group. """ from common.methods import set_progress def run(job, group, logger=None): roles_to_sync = ['user_admins', 'resource_admins', 'approvers', ...
{ "repo_name": "CloudBoltSoftware/cloudbolt-forge", "path": "actions/cloudbolt_plugins/add_parent_group_users_to_subgroup/add_parent_group_users_to_subgroup.py", "copies": "1", "size": "1130", "license": "apache-2.0", "hash": 2966969016515634000, "line_mean": 31.2857142857, "line_max": 90, "alpha_frac...
#!/bin/env python """ a tool for creating wig files from results of variant heterozygous bases. Usage: snp_position2wig.py no_allele_fraction <het_snp_file> snp_position2wig.py with_allele_fraction <het_snp_file> Options: -h --help Show this screen Author: Ebrahim Afyounian <ebrahim.afyounian@staff...
{ "repo_name": "mgvel/VariantCall.jl", "path": "misc/snp_position2wig.py", "copies": "1", "size": "1731", "license": "mit", "hash": 6649504883789970000, "line_mean": 28.8448275862, "line_max": 85, "alpha_frac": 0.5771230503, "autogenerated": false, "ratio": 2.958974358974359, "config_test": fals...
""" Authors: David Kent, Tim Erwin, Tim Bedin, Damien Irving Copyright 2014 CSIRO Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
{ "repo_name": "ccarouge/cwsl-ctools", "path": "utils/xml_to_nc.py", "copies": "3", "size": "7024", "license": "apache-2.0", "hash": 3166175809042489300, "line_mean": 32.7692307692, "line_max": 153, "alpha_frac": 0.6259965831, "autogenerated": false, "ratio": 3.645044110015568, "config_test": fa...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osg2cpp" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB # Translated from file 'osg2cpp.cpp' #include <osg/ArgumentParser> #include <o...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osg2cpp.py", "copies": "1", "size": "4105", "license": "bsd-3-clause", "hash": 2730472029378179600, "line_mean": 35.0087719298, "line_max": 188, "alpha_frac": 0.6453105968, "autogenerated": false, "ratio": 3.8873106...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganalysis" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import osgViewer # Translated fr...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganalysis.py", "copies": "1", "size": "24387", "license": "bsd-3-clause", "hash": 3892266405671076400, "line_mean": 32.5909090909, "line_max": 121, "alpha_frac": 0.6489523107, "autogenerated": false, "ratio": 4.07...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimate" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgSim from osgpypp import osgUt...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimate.py", "copies": "1", "size": "8250", "license": "bsd-3-clause", "hash": -3854537817698452500, "line_mean": 28.5698924731, "line_max": 162, "alpha_frac": 0.6792727273, "autogenerated": false, "ratio": 3.375...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationeasemotion" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgGA from osgpypp import osgViewer fro...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationeasemotion.py", "copies": "1", "size": "11537", "license": "bsd-3-clause", "hash": 5498077348153494000, "line_mean": 29.6835106383, "line_max": 82, "alpha_frac": 0.6333535581, "autogenerated": false, "ra...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationhardware" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgDB from osgpypp import osgGA from osgp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationhardware.py", "copies": "1", "size": "8423", "license": "bsd-3-clause", "hash": -3370005189358564400, "line_mean": 32.1614173228, "line_max": 131, "alpha_frac": 0.6539237801, "autogenerated": false, "rat...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationmakepath" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgGA from osgpypp import osgViewer # T...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationmakepath.py", "copies": "1", "size": "11459", "license": "bsd-3-clause", "hash": 4030920884671431000, "line_mean": 34.6978193146, "line_max": 114, "alpha_frac": 0.5729993891, "autogenerated": false, "rat...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationmorph" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgDB from osgpypp import osgGA from osgpypp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationmorph.py", "copies": "1", "size": "4052", "license": "bsd-3-clause", "hash": -4169027451552377300, "line_mean": 27.7375886525, "line_max": 109, "alpha_frac": 0.7097729516, "autogenerated": false, "ratio"...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationnode" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgGA from osgpypp import osgViewer # Trans...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationnode.py", "copies": "1", "size": "10398", "license": "bsd-3-clause", "hash": -7146773592220378000, "line_mean": 37.5111111111, "line_max": 114, "alpha_frac": 0.5759761493, "autogenerated": false, "ratio"...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationskinning" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgDB from osgpypp import osgGA from osgp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationskinning.py", "copies": "1", "size": "9689", "license": "bsd-3-clause", "hash": 269521248286038980, "line_mean": 34.1050724638, "line_max": 127, "alpha_frac": 0.6825265765, "autogenerated": false, "ratio...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationsolid" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgAnimation from osgpypp import osgGA from osgpypp import osgViewer # Tran...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationsolid.py", "copies": "1", "size": "6283", "license": "bsd-3-clause", "hash": 9062449499241540000, "line_mean": 37.7839506173, "line_max": 130, "alpha_frac": 0.7391373548, "autogenerated": false, "ratio":...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osganimationtimeline" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osgAnimation from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer #...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osganimationtimeline.py", "copies": "1", "size": "7605", "license": "bsd-3-clause", "hash": 617274275677666200, "line_mean": 35.5625, "line_max": 110, "alpha_frac": 0.6824457594, "autogenerated": false, "ratio": 3.8...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgatomiccounter" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp impor...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgatomiccounter.py", "copies": "1", "size": "7591", "license": "bsd-3-clause", "hash": 8608520477085054000, "line_mean": 33.9815668203, "line_max": 548, "alpha_frac": 0.7083388223, "autogenerated": false, "ratio": ...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgautocapture" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgTerrain from osgpypp impo...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgautocapture.py", "copies": "1", "size": "13688", "license": "bsd-3-clause", "hash": 7866906064550600000, "line_mean": 34.7389033943, "line_max": 239, "alpha_frac": 0.6396843951, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgautotransform" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgText from osgpypp import osgUtil from osgpypp imp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgautotransform.py", "copies": "1", "size": "6157", "license": "bsd-3-clause", "hash": 5278099337809666000, "line_mean": 27.7710280374, "line_max": 162, "alpha_frac": 0.676628228, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgbillboard" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated from ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgbillboard.py", "copies": "1", "size": "5932", "license": "bsd-3-clause", "hash": -8260022572472272000, "line_mean": 28.0784313725, "line_max": 135, "alpha_frac": 0.6687457856, "autogenerated": false, "ratio": 2.8...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgblendequation" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgblendequation.py", "copies": "1", "size": "5855", "license": "bsd-3-clause", "hash": -6563056831709116000, "line_mean": 31.7094972067, "line_max": 194, "alpha_frac": 0.7052092229, "autogenerated": false, "ratio":...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgcallback" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import osg...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgcallback.py", "copies": "1", "size": "6248", "license": "bsd-3-clause", "hash": -811497003685989200, "line_mean": 32.2340425532, "line_max": 122, "alpha_frac": 0.695262484, "autogenerated": false, "ratio": 4.0997...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgcatch" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgParticle from osgpypp import os...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgcatch.py", "copies": "1", "size": "43203", "license": "bsd-3-clause", "hash": 2704188824984988700, "line_mean": 32.5166795966, "line_max": 189, "alpha_frac": 0.6066476865, "autogenerated": false, "ratio": 3.75188...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgclip" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import osgView...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgclip.py", "copies": "1", "size": "4603", "license": "bsd-3-clause", "hash": -6404868741404947000, "line_mean": 26.5628742515, "line_max": 106, "alpha_frac": 0.7195307408, "autogenerated": false, "ratio": 3.532617...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgcluster" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import arpa from osgpypp import net from osgpypp import netinet from osgpypp import osg from osgpypp import osgDB f...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgcluster.py", "copies": "1", "size": "33137", "license": "bsd-3-clause", "hash": -4046865948758729700, "line_mean": 29.9691588785, "line_max": 165, "alpha_frac": 0.6046715152, "autogenerated": false, "ratio": 3.65...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgcompositeviewer" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgFX from osgpypp import osgGA from osgpypp impor...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgcompositeviewer.py", "copies": "1", "size": "9653", "license": "bsd-3-clause", "hash": -6966941962609009000, "line_mean": 32.9894366197, "line_max": 128, "alpha_frac": 0.6440484823, "autogenerated": false, "ratio...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgcomputeshaders" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgcomputeshaders.py", "copies": "1", "size": "4705", "license": "bsd-3-clause", "hash": -1475067563008185900, "line_mean": 41.3873873874, "line_max": 146, "alpha_frac": 0.7196599362, "autogenerated": false, "ratio"...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgcopy" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated from fil...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgcopy.py", "copies": "1", "size": "9718", "license": "bsd-3-clause", "hash": 2865628657419771400, "line_mean": 36.0916030534, "line_max": 118, "alpha_frac": 0.6053714756, "autogenerated": false, "ratio": 3.9876897...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgdatabaserevisions" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp i...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgdatabaserevisions.py", "copies": "1", "size": "5951", "license": "bsd-3-clause", "hash": 8382075904646407000, "line_mean": 35.509202454, "line_max": 162, "alpha_frac": 0.7338262477, "autogenerated": false, "ratio...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgdelaunay" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgText from osgpypp import osgUtil from osgpypp import o...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgdelaunay.py", "copies": "1", "size": "52131", "license": "bsd-3-clause", "hash": 1249346453395518200, "line_mean": 43.7860824742, "line_max": 119, "alpha_frac": 0.5720204869, "autogenerated": false, "ratio": 3.62...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgdepthpartition" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp impo...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgdepthpartition.py", "copies": "1", "size": "6047", "license": "bsd-3-clause", "hash": -7471888882574340000, "line_mean": 31.164893617, "line_max": 132, "alpha_frac": 0.6919133455, "autogenerated": false, "ratio":...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgdepthpeeling" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgdepthpeeling.py", "copies": "1", "size": "36802", "license": "bsd-3-clause", "hash": 8741992093307305000, "line_mean": 27.093129771, "line_max": 260, "alpha_frac": 0.7006140971, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgdistortion" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import o...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgdistortion.py", "copies": "1", "size": "24087", "license": "bsd-3-clause", "hash": -7681564620844663000, "line_mean": 34.0101744186, "line_max": 157, "alpha_frac": 0.6616016939, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgdrawinstanced" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgViewer # Translated from file 'osgdrawinstanced...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgdrawinstanced.py", "copies": "1", "size": "5634", "license": "bsd-3-clause", "hash": 6098289531053788000, "line_mean": 33.1454545455, "line_max": 85, "alpha_frac": 0.6524671636, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgfadetext" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgSim from osgpypp import osgT...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgfadetext.py", "copies": "1", "size": "4772", "license": "bsd-3-clause", "hash": 3981458037219707400, "line_mean": 28.0975609756, "line_max": 122, "alpha_frac": 0.7106035205, "autogenerated": false, "ratio": 3.360...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgfont" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgGA from osgpypp import osgViewer # Translated from file 'osgfont.cpp' #include <c...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgfont.py", "copies": "1", "size": "3646", "license": "bsd-3-clause", "hash": -5464028875905644000, "line_mean": 23.8027210884, "line_max": 209, "alpha_frac": 0.6264399342, "autogenerated": false, "ratio": 3.156709...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgforest" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osgUt...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgforest.py", "copies": "1", "size": "42731", "license": "bsd-3-clause", "hash": -1096021364584259800, "line_mean": 31.9206471495, "line_max": 248, "alpha_frac": 0.6111020103, "autogenerated": false, "ratio": 3.372...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgfpdepth" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osgU...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgfpdepth.py", "copies": "1", "size": "35481", "license": "bsd-3-clause", "hash": -8710005781620259000, "line_mean": 38.5551839465, "line_max": 180, "alpha_frac": 0.6531101153, "autogenerated": false, "ratio": 3.84...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgframerenderer" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated f...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgframerenderer.py", "copies": "1", "size": "38543", "license": "bsd-3-clause", "hash": 6266114204815455000, "line_mean": 30.6705012325, "line_max": 180, "alpha_frac": 0.6493007809, "autogenerated": false, "ratio":...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgfxbrowser" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgFX from osgpypp import osgGA from osgpypp import osgT...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgfxbrowser.py", "copies": "1", "size": "19203", "license": "bsd-3-clause", "hash": -415442743733749950, "line_mean": 34.8264925373, "line_max": 194, "alpha_frac": 0.6608342446, "autogenerated": false, "ratio": 3.4...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osggameoflife" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated from...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osggameoflife.py", "copies": "1", "size": "14158", "license": "bsd-3-clause", "hash": -2833233270478038000, "line_mean": 32.0023310023, "line_max": 239, "alpha_frac": 0.6926825823, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osggeometry" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated from f...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osggeometry.py", "copies": "1", "size": "23563", "license": "bsd-3-clause", "hash": 1036564543086879900, "line_mean": 35.75975039, "line_max": 123, "alpha_frac": 0.6624368714, "autogenerated": false, "ratio": 3.4348...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osggpx" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osgViewe...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osggpx.py", "copies": "1", "size": "18541", "license": "bsd-3-clause", "hash": 1057193787524013600, "line_mean": 34.8626692456, "line_max": 315, "alpha_frac": 0.5824928537, "autogenerated": false, "ratio": 3.8173769...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osggraphicscost" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgViewer # Translated from file 'osggraphicscost.c...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osggraphicscost.py", "copies": "1", "size": "2531", "license": "bsd-3-clause", "hash": 7724458994840784000, "line_mean": 28.4302325581, "line_max": 113, "alpha_frac": 0.7269853813, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osghangglide" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import os...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osghangglide.py", "copies": "1", "size": "307624", "license": "bsd-3-clause", "hash": 1384731641592121600, "line_mean": 28.1808006071, "line_max": 199, "alpha_frac": 0.473792682, "autogenerated": false, "ratio": 2.1...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osghud" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osgUtil ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osghud.py", "copies": "1", "size": "10529", "license": "bsd-3-clause", "hash": -2264021550521720600, "line_mean": 28.7429378531, "line_max": 111, "alpha_frac": 0.6325387026, "autogenerated": false, "ratio": 3.914126...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgimagesequence" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgViewer # Translated from file 'osgimagesequence...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgimagesequence.py", "copies": "1", "size": "13599", "license": "bsd-3-clause", "hash": -2970129592466159600, "line_mean": 32.2493887531, "line_max": 122, "alpha_frac": 0.5992352379, "autogenerated": false, "ratio"...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgintersection" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgSim from osgpypp import osgUtil # Translated fro...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgintersection.py", "copies": "1", "size": "9066", "license": "bsd-3-clause", "hash": -581964356649976800, "line_mean": 34.6929133858, "line_max": 105, "alpha_frac": 0.6175821752, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgkdtree" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgSim from osgpypp import osgUtil from osgpypp import osgV...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgkdtree.py", "copies": "1", "size": "2625", "license": "bsd-3-clause", "hash": -4855200847040105000, "line_mean": 28.4943820225, "line_max": 91, "alpha_frac": 0.7405714286, "autogenerated": false, "ratio": 3.76074...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgkeyboardmouse" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgFX from osgpypp import osgGA from osgpypp import ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgkeyboardmouse.py", "copies": "1", "size": "12216", "license": "bsd-3-clause", "hash": 2546915375295532500, "line_mean": 34.9294117647, "line_max": 295, "alpha_frac": 0.608546169, "autogenerated": false, "ratio": ...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgkeyboard" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgText from osgpypp import osgViewer # Translated from...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgkeyboard.py", "copies": "1", "size": "15261", "license": "bsd-3-clause", "hash": 2259805700094802700, "line_mean": 36.3129584352, "line_max": 99, "alpha_frac": 0.6536268921, "autogenerated": false, "ratio": 2.839...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgkeystone" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated from f...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgkeystone.py", "copies": "1", "size": "3856", "license": "bsd-3-clause", "hash": -6006644972065500000, "line_mean": 31.1333333333, "line_max": 109, "alpha_frac": 0.6989107884, "autogenerated": false, "ratio": 3.79...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osglauncher" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osg...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osglauncher.py", "copies": "1", "size": "12085", "license": "bsd-3-clause", "hash": -8047232735747004000, "line_mean": 27.0394431555, "line_max": 137, "alpha_frac": 0.6172941663, "autogenerated": false, "ratio": 3.6...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osglight" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated from fi...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osglight.py", "copies": "1", "size": "10059", "license": "bsd-3-clause", "hash": -4744616777796777000, "line_mean": 27.9051724138, "line_max": 113, "alpha_frac": 0.636942042, "autogenerated": false, "ratio": 3.48786...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osglightpoint" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgSim from osgpypp import osgUtil from osgpypp import ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osglightpoint.py", "copies": "1", "size": "8044", "license": "bsd-3-clause", "hash": -1994227265431742500, "line_mean": 31.6991869919, "line_max": 188, "alpha_frac": 0.6556439582, "autogenerated": false, "ratio": 3....
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osglogicop" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated from ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osglogicop.py", "copies": "1", "size": "5523", "license": "bsd-3-clause", "hash": -1809282770324673500, "line_mean": 28.6935483871, "line_max": 92, "alpha_frac": 0.6836864023, "autogenerated": false, "ratio": 3.5178...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osglogo" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osgUtil...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osglogo.py", "copies": "1", "size": "15037", "license": "bsd-3-clause", "hash": 1774727172627054600, "line_mean": 29.687755102, "line_max": 135, "alpha_frac": 0.678659307, "autogenerated": false, "ratio": 2.99840478...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmanipulator" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgManipulator from osgpypp import osgText from osgpyp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/debugging2/osgmanipulator.py", "copies": "1", "size": "14428", "license": "bsd-3-clause", "hash": 8508895490401916000, "line_mean": 42.1976047904, "line_max": 366, "alpha_frac": 0.6933046853, "autogenerated": false, "ratio": 3.632426...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmotionblur" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated from file 'osgmotionblur.c...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmotionblur.py", "copies": "1", "size": "4610", "license": "bsd-3-clause", "hash": 1740747376619396600, "line_mean": 33.4029850746, "line_max": 200, "alpha_frac": 0.694143167, "autogenerated": false, "ratio": 4.08...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmovie" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated from file...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmovie.py", "copies": "1", "size": "22524", "license": "bsd-3-clause", "hash": -3779835198820042000, "line_mean": 35.3877221325, "line_max": 163, "alpha_frac": 0.5865743207, "autogenerated": false, "ratio": 4.0649...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmultiplemovies" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgViewer # Translated ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmultiplemovies.py", "copies": "1", "size": "20647", "license": "bsd-3-clause", "hash": 6604142138719484000, "line_mean": 35.3503521127, "line_max": 175, "alpha_frac": 0.6120501768, "autogenerated": false, "ratio"...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmultiplerendertargets" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgGA from osgpypp import osgViewer # Translated from file 'osgmulti...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmultiplerendertargets.py", "copies": "1", "size": "16314", "license": "bsd-3-clause", "hash": 8784695072179565000, "line_mean": 37.9355608592, "line_max": 334, "alpha_frac": 0.6318499448, "autogenerated": false, ...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmultitexturecontrol" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgFX from osgpypp import osgGA from osgpypp i...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmultitexturecontrol.py", "copies": "1", "size": "12916", "license": "bsd-3-clause", "hash": 216862808279880480, "line_mean": 34.8777777778, "line_max": 154, "alpha_frac": 0.639671725, "autogenerated": false, "rat...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmultitexture" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmultitexture.py", "copies": "1", "size": "3801", "license": "bsd-3-clause", "hash": -3324139628881616400, "line_mean": 31.2118644068, "line_max": 108, "alpha_frac": 0.7071823204, "autogenerated": false, "ratio": ...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgmultiviewpaging" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp imp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgmultiviewpaging.py", "copies": "1", "size": "6752", "license": "bsd-3-clause", "hash": -3448065701307846000, "line_mean": 35.1069518717, "line_max": 128, "alpha_frac": 0.6864632701, "autogenerated": false, "ratio...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgoccluder" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import osg...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgoccluder.py", "copies": "1", "size": "10088", "license": "bsd-3-clause", "hash": 2805138045587072500, "line_mean": 29.9447852761, "line_max": 151, "alpha_frac": 0.6457176844, "autogenerated": false, "ratio": 3.65...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgocclusionquery" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp impo...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgocclusionquery.py", "copies": "1", "size": "21304", "license": "bsd-3-clause", "hash": 8801566567246902000, "line_mean": 30.1461988304, "line_max": 158, "alpha_frac": 0.649079985, "autogenerated": false, "ratio":...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgoscdevice" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgFX from osgpypp import osgGA from osgpypp import osgT...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgoscdevice.py", "copies": "1", "size": "17614", "license": "bsd-3-clause", "hash": -7605448538822671000, "line_mean": 33.0696324952, "line_max": 155, "alpha_frac": 0.6178040195, "autogenerated": false, "ratio": 3....
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgpackeddepthstencil" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgViewer # Translated from file 'osgpackeddepthstencil.cpp' # OpenSce...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgpackeddepthstencil.py", "copies": "1", "size": "7528", "license": "bsd-3-clause", "hash": 5843755203407779000, "line_mean": 33.8518518519, "line_max": 132, "alpha_frac": 0.7096174283, "autogenerated": false, "rat...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgpagedlod" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil # Translated from file 'osgpagedlod.cpp' # Ope...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgpagedlod.py", "copies": "1", "size": "8333", "license": "bsd-3-clause", "hash": 4277444530614637000, "line_mean": 31.1737451737, "line_max": 163, "alpha_frac": 0.6369854794, "autogenerated": false, "ratio": 3.824...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgparametric" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated fr...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgparametric.py", "copies": "1", "size": "9381", "license": "bsd-3-clause", "hash": -2667503417723356000, "line_mean": 30.3745819398, "line_max": 150, "alpha_frac": 0.6181643748, "autogenerated": false, "ratio": 3....
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgparticleeffects" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgParticle from osgpypp import osgText from osgpy...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgparticleeffects.py", "copies": "1", "size": "15114", "license": "bsd-3-clause", "hash": -638850088496593200, "line_mean": 34.3957845433, "line_max": 173, "alpha_frac": 0.6256450973, "autogenerated": false, "ratio...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgparticle" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgParticle from osgpypp import osgViewer # Translated from file 'osgparticle.cpp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgparticle.py", "copies": "1", "size": "18521", "license": "bsd-3-clause", "hash": -3259713746078263000, "line_mean": 36.1162324649, "line_max": 116, "alpha_frac": 0.6901355218, "autogenerated": false, "ratio": 3.8...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgparticleshader" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgParticle from osgpypp ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgparticleshader.py", "copies": "1", "size": "8904", "license": "bsd-3-clause", "hash": 6413736861365508000, "line_mean": 40.0322580645, "line_max": 121, "alpha_frac": 0.716868823, "autogenerated": false, "ratio": ...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgpdf" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osgViewer from osgpypp import osgWidget # Translated from file 'osgpdf.cpp' #include <osgViewer/Viewer> #incl...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgpdf.py", "copies": "1", "size": "1298", "license": "bsd-3-clause", "hash": -2166139089073240000, "line_mean": 24.4509803922, "line_max": 100, "alpha_frac": 0.5893682589, "autogenerated": false, "ratio": 3.4613333...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgphotoalbum" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import OpenThreads from osgpypp import osg from osgpypp import osgDB from osgpypp import osgText from osgpypp im...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgphotoalbum.py", "copies": "1", "size": "46259", "license": "bsd-3-clause", "hash": -2484837817284697000, "line_mean": 31.7613314448, "line_max": 167, "alpha_frac": 0.6356600878, "autogenerated": false, "ratio": 3...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgpick" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgText from osgpypp import osgUtil...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgpick.py", "copies": "1", "size": "10955", "license": "bsd-3-clause", "hash": -3993476843106372600, "line_mean": 32.501529052, "line_max": 132, "alpha_frac": 0.6561387494, "autogenerated": false, "ratio": 3.620290...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgplanets" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import osgV...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgplanets.py", "copies": "1", "size": "32554", "license": "bsd-3-clause", "hash": -443791340821171900, "line_mean": 34.4232861806, "line_max": 201, "alpha_frac": 0.6396756159, "autogenerated": false, "ratio": 3.441...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgpoints" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgUtil from osgpypp import osgViewer # Translated from f...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgpoints.py", "copies": "1", "size": "7408", "license": "bsd-3-clause", "hash": -3971840256178967600, "line_mean": 32.2197309417, "line_max": 155, "alpha_frac": 0.6322894168, "autogenerated": false, "ratio": 4.2623...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgpointsprite" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgViewer # Translated from file 'osgpointsprite.cpp...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgpointsprite.py", "copies": "1", "size": "3976", "license": "bsd-3-clause", "hash": -3838842026031822300, "line_mean": 31.5901639344, "line_max": 85, "alpha_frac": 0.6964285714, "autogenerated": false, "ratio": 3....
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgposter" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import osgVi...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgposter.py", "copies": "1", "size": "33474", "license": "bsd-3-clause", "hash": -368291971543561540, "line_mean": 38.013986014, "line_max": 157, "alpha_frac": 0.6386747924, "autogenerated": false, "ratio": 3.69429...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgprecipitation" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgParticle from osgpypp i...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgprecipitation.py", "copies": "1", "size": "9562", "license": "bsd-3-clause", "hash": 8272258486876933000, "line_mean": 41.4977777778, "line_max": 155, "alpha_frac": 0.6980757164, "autogenerated": false, "ratio": ...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgprerendercubemap" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgViewer # Translated from file 'osgprerendercubemap.cpp' # OpenSceneGr...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgprerendercubemap.py", "copies": "1", "size": "12792", "license": "bsd-3-clause", "hash": 932189780490578600, "line_mean": 35.6532951289, "line_max": 187, "alpha_frac": 0.6803470919, "autogenerated": false, "ratio...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgprerender" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgUtil from osgpypp import os...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgprerender.py", "copies": "1", "size": "16658", "license": "bsd-3-clause", "hash": 8714420198114286000, "line_mean": 35.1344902386, "line_max": 197, "alpha_frac": 0.6383719534, "autogenerated": false, "ratio": 3.8...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgqfont" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgQt from osgpypp import osgText ...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgqfont.py", "copies": "1", "size": "18394", "license": "bsd-3-clause", "hash": 386748076728082200, "line_mean": 32.9372693727, "line_max": 140, "alpha_frac": 0.6667391541, "autogenerated": false, "ratio": 3.553022...
#!/bin/env python # Automatically translated python version of # OpenSceneGraph example program "osgQtBrowser" # !!! This program will need manual tuning before it will work. !!! import sys from osgpypp import osg from osgpypp import osgDB from osgpypp import osgGA from osgpypp import osgQt from osgpypp import osgV...
{ "repo_name": "JaneliaSciComp/osgpyplusplus", "path": "examples/rough_translated1/osgQtBrowser.py", "copies": "1", "size": "4758", "license": "bsd-3-clause", "hash": 1749817762009269000, "line_mean": 29.5, "line_max": 118, "alpha_frac": 0.6870533838, "autogenerated": false, "ratio": 3.90961380443...