[Igarden-commit] Garden/source/LayoutDB PointPath.cpp, 1.21, 1.21.2.1
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2006-11-02 23:30:41
|
Update of /cvsroot/igarden/Garden/source/LayoutDB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv22231 Modified Files: Tag: Release_branch_v1 PointPath.cpp Log Message: Add z-axis Index: PointPath.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/PointPath.cpp,v retrieving revision 1.21 retrieving revision 1.21.2.1 diff -C2 -d -r1.21 -r1.21.2.1 *** PointPath.cpp 5 Oct 2005 22:12:46 -0000 1.21 --- PointPath.cpp 2 Nov 2006 23:30:22 -0000 1.21.2.1 *************** *** 223,227 **** void PointPath::CreateTestPattern( Layer* layout ) { ! planPoint_t point1 = { 5, 5 }, point2 = { 60 , 60 }; Path *path; PathElement *element; --- 223,227 ---- void PointPath::CreateTestPattern( Layer* layout ) { ! planPoint_t point1(5, 5,0), point2(60 , 60,0); Path *path; PathElement *element; *************** *** 256,259 **** --- 256,260 ---- _value.xOffset += offset.xOffset; _value.yOffset += offset.yOffset; + _value.zOffset += offset.zOffset; } |