Changeset 1935 in Sophya for trunk/SophyaPI
- Timestamp:
- Mar 14, 2002, 10:21:49 AM (24 years ago)
- Location:
- trunk/SophyaPI/PI
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/pigraphuc.cc
r1921 r1935 697 697 698 698 /* --Methode-- */ 699 void PIGraphicUC::DrawArrowMarker(PIGrCoord x1, PIGrCoord y1, PIGrCoord x2, PIGrCoord y2 )699 void PIGraphicUC::DrawArrowMarker(PIGrCoord x1, PIGrCoord y1, PIGrCoord x2, PIGrCoord y2, bool fgline) 700 700 { 701 701 if (!mGrC) return; … … 703 703 UC2GrC(x1, y1, xf1, yf1); 704 704 UC2GrC(x2, y2, xf2, yf2); 705 mGrC->DrawArrowMarker(xf1, yf1, xf2, yf2 );705 mGrC->DrawArrowMarker(xf1, yf1, xf2, yf2, fgline); 706 706 } 707 707 -
trunk/SophyaPI/PI/pigraphuc.h
r1921 r1935 71 71 virtual void DrawMarker(PIGrCoord x0, PIGrCoord y0); 72 72 virtual void DrawMarkers(PIGrCoord *x, PIGrCoord *y, int n); 73 virtual void DrawArrowMarker(PIGrCoord x1, PIGrCoord y1, PIGrCoord x2, PIGrCoord y2); 73 virtual void DrawArrowMarker(PIGrCoord x1, PIGrCoord y1, PIGrCoord x2, PIGrCoord y2, 74 bool fgline=true); 74 75 75 76 virtual void DrawPixmap(PIGrCoord x, PIGrCoord y, unsigned char *pix, -
trunk/SophyaPI/PI/pigratt.cc
r1914 r1935 314 314 gim.mrk = PI_NotDefMarker; 315 315 GrAmrk["defmarker"] = gim; 316 317 for( intj=0; j<11; j++) {316 int j; 317 for(j=0; j<11; j++) { 318 318 string smrk; 319 319 char buff[32]; … … 341 341 GrAarrmrk["defarrow"] = giam; 342 342 343 for( intj=0; j<5; j++) {343 for(j=0; j<5; j++) { 344 344 string smrk; 345 345 char buff[32];
Note:
See TracChangeset
for help on using the changeset viewer.