Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(2) | Derive(0) | Import(0)
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/analyze_plugins/vectorwrite.py SkeinFox(Download)
def addRotatedLoopLayerToOutput( self, layerIndex, rotatedBoundaryLayer ): "Add rotated boundary layer to the output." self.addLayerBegin( layerIndex, rotatedBoundaryLayer.z ) pathStart = '\t\t\t<path transform="scale(%s, %s) translate(%s, %s)" d="' % ( self.unitScale, - self.unitScale, self.getRounded( - self.cornerMinimum.x ), self.getRounded( - self.cornerMinimum.y ) ) self.addLoops( rotatedBoundaryLayer.boundaryLoops, pathStart )
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/craft_plugins/carve.py SkeinFox(Download)
def addRotatedLoopLayerToOutput( self, layerIndex, rotatedBoundaryLayer ): "Add rotated boundary layer to the output." self.addLayerBegin( layerIndex, rotatedBoundaryLayer.z ) if rotatedBoundaryLayer.rotation != None: self.addLine('\t\t\t<!--bridgeRotation--> %s' % rotatedBoundaryLayer.rotation ) # Indicate the bridge rotation.