Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(8) | Derive(0) | Import(0)
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/craft_plugins/raft.py SkeinFox(Download)
layerCornerLow = complex( 999999999.0, 999999999.0 ) for endpoint in endpoints: layerCornerHigh = euclidean.getMaximum( layerCornerHigh, endpoint.point ) layerCornerLow = euclidean.getMinimum( layerCornerLow, endpoint.point ) squareLoop = euclidean.getSquareLoop( layerCornerLow, layerCornerHigh )
boundaryLayer.loops.append( boundaryLoop ) boundaryLoop.append( location.dropAxis( 2 ) ) self.cornerHighComplex = euclidean.getMaximum( self.cornerHighComplex, location.dropAxis( 2 ) ) self.cornerLow = euclidean.getPointMinimum( self.cornerLow, location ) elif firstWord == '(<layer>':
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/raft.py SkeinFox(Download)
layerCornerLow = complex( 999999999.0, 999999999.0 ) for endpoint in endpoints: layerCornerHigh = euclidean.getMaximum( layerCornerHigh, endpoint.point ) layerCornerLow = euclidean.getMinimum( layerCornerLow, endpoint.point ) squareLoop = getSquareLoop( layerCornerLow, layerCornerHigh )
if firstWord == 'G1': location = gcodec.getLocationFromSplitLine( self.oldLocation, splitLine ) self.cornerHighComplex = euclidean.getMaximum( self.cornerHighComplex, location.dropAxis( 2 ) ) self.cornerLow = euclidean.getPointMinimum( self.cornerLow, location ) self.oldLocation = location
src/s/k/SkeinFox-HEAD/skeinforge-0005/skeinforge_tools/raft.py SkeinFox(Download)
layerCornerLow = complex( 999999999.0, 999999999.0 ) for endpoint in endpoints: layerCornerHigh = euclidean.getMaximum( layerCornerHigh, endpoint.point ) layerCornerLow = euclidean.getMinimum( layerCornerLow, endpoint.point ) squareLoop = getSquareLoop( layerCornerLow, layerCornerHigh )
if firstWord == 'G1': location = gcodec.getLocationFromSplitLine( self.oldLocation, splitLine ) self.cornerHighComplex = euclidean.getMaximum( self.cornerHighComplex, location.dropAxis( 2 ) ) self.cornerLow = euclidean.getPointMinimum( self.cornerLow, location ) self.oldLocation = location
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/skeinforge_utilities/gcodec.py SkeinFox(Download)
if firstWord == '(<boundaryPoint>': locationComplex = getLocationFromSplitLine( None, splitLine ).dropAxis( 2 ) self.cornerMaximum = euclidean.getMaximum( self.cornerMaximum, locationComplex ) self.cornerMinimum = euclidean.getMinimum( self.cornerMinimum, locationComplex ) elif firstWord == 'G1': location = getLocationFromSplitLine( self.oldLocation, splitLine ) locationComplex = location.dropAxis( 2 ) self.cornerMaximum = euclidean.getMaximum( self.cornerMaximum, locationComplex + self.cornerRadius )