( self, trans )
| 1059 | writer.end() |
| 1060 | |
| 1061 | def copy( self, trans ): |
| 1062 | obj = FpLine( self.obj_name ) |
| 1063 | obj.set( "start", trans.add_flip_rot( self.start ) ) |
| 1064 | obj.set( "end", trans.add_flip_rot( self.end ) ) |
| 1065 | obj.set( "layer", trans.layer( self.layer ) ) |
| 1066 | obj.set( "width", self.width.clone() ) |
| 1067 | return obj |
| 1068 | |
| 1069 | |
| 1070 | class FpText( KicadFatObj ): |
nothing calls this directly
no test coverage detected