[Igarden-commit] Garden/source/LayoutDB PointPath.cpp, 1.21.2.4, 1.21.2.5 PointPath.h, 1.16.2.1, 1.
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2008-04-16 02:47:24
|
Update of /cvsroot/igarden/Garden/source/LayoutDB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv1886/source/LayoutDB Modified Files: Tag: Release_branch_v1 PointPath.cpp PointPath.h Log Message: Fix problem displaying the bounds of a point path Index: PointPath.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/PointPath.h,v retrieving revision 1.16.2.1 retrieving revision 1.16.2.2 diff -C2 -d -r1.16.2.1 -r1.16.2.2 *** PointPath.h 26 Mar 2008 22:21:33 -0000 1.16.2.1 --- PointPath.h 16 Apr 2008 02:47:17 -0000 1.16.2.2 *************** *** 42,45 **** --- 42,46 ---- virtual void DrawCenterline(PlanView* view, lineType_t pattern); virtual void DrawDimensionLine(PlanView* view); + virtual void DrawBounds( PlanView* view); #pragma mark Test virtual bool IsOpenPath(); Index: PointPath.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/PointPath.cpp,v retrieving revision 1.21.2.4 retrieving revision 1.21.2.5 diff -C2 -d -r1.21.2.4 -r1.21.2.5 *** PointPath.cpp 26 Mar 2008 22:21:37 -0000 1.21.2.4 --- PointPath.cpp 16 Apr 2008 02:47:16 -0000 1.21.2.5 *************** *** 142,145 **** --- 142,155 ---- } + + // --------------------------------------------------------------------------- + /// DrawBounds + // + void PointPath::DrawBounds( PlanView* view) + { + DrawCenterline(view, kPlanStandardLine); + } + + #pragma mark Test |