Changeset 1935 in Sophya for trunk/SophyaPI


Ignore:
Timestamp:
Mar 14, 2002, 10:21:49 AM (24 years ago)
Author:
ansari
Message:

corrections erreurs, suite compil sur SGI-CC - Reza 14/3/2002

Location:
trunk/SophyaPI/PI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PI/pigraphuc.cc

    r1921 r1935  
    697697
    698698/* --Methode-- */
    699 void PIGraphicUC::DrawArrowMarker(PIGrCoord x1, PIGrCoord y1, PIGrCoord x2, PIGrCoord y2)
     699void PIGraphicUC::DrawArrowMarker(PIGrCoord x1, PIGrCoord y1, PIGrCoord x2, PIGrCoord y2, bool fgline)
    700700{
    701701  if (!mGrC) return;
     
    703703  UC2GrC(x1, y1, xf1, yf1);
    704704  UC2GrC(x2, y2, xf2, yf2);
    705   mGrC->DrawArrowMarker(xf1, yf1, xf2, yf2);
     705  mGrC->DrawArrowMarker(xf1, yf1, xf2, yf2, fgline);
    706706}
    707707
  • trunk/SophyaPI/PI/pigraphuc.h

    r1921 r1935  
    7171  virtual void       DrawMarker(PIGrCoord x0, PIGrCoord y0);
    7272  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);
    7475
    7576  virtual void       DrawPixmap(PIGrCoord x, PIGrCoord y, unsigned char *pix,
  • trunk/SophyaPI/PI/pigratt.cc

    r1914 r1935  
    314314  gim.mrk = PI_NotDefMarker;
    315315  GrAmrk["defmarker"] = gim;
    316  
    317   for(int j=0; j<11; j++) {
     316  int j;
     317  for(j=0; j<11; j++) {
    318318    string smrk;
    319319    char buff[32];
     
    341341  GrAarrmrk["defarrow"] = giam;
    342342 
    343   for(int j=0; j<5; j++) {
     343  for(j=0; j<5; j++) {
    344344    string smrk;
    345345    char buff[32];
Note: See TracChangeset for help on using the changeset viewer.