| 24 | } |
| 25 | |
| 26 | PyObject* TriRect::Repr( bool* handled ) |
| 27 | { |
| 28 | *handled = true; |
| 29 | char buf[120]; |
| 30 | sprintf_s( buf, "<Instance of 'TriRect' (left=%d top=%d right=%d bottom=%d)>", left, top, right, bottom ); |
| 31 | return ToPython( buf ); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | TriRect::TriRect( IRoot* lockobj ) |
nothing calls this directly
no test coverage detected