diff options
| author | MenTaLguY <mental@rydia.net> | 2006-04-01 04:03:52 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-04-01 04:03:52 +0000 |
| commit | 03f223af8506284d4d4e27f08b0f6a694ae11dfe (patch) | |
| tree | 144a0efe64d12d4eaf63e3e5187a5d2e353f5496 | |
| parent | oops, fix silly crash (diff) | |
| download | inkscape-03f223af8506284d4d4e27f08b0f6a694ae11dfe.tar.gz inkscape-03f223af8506284d4d4e27f08b0f6a694ae11dfe.zip | |
add documentation
(bzr r389)
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/dyna-draw-context.h | 15 |
2 files changed, 17 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2006-03-31 MenTaLguY <mental@rydia.net> + + * src/dyna-draw-context.h: add documentation + 2006-03-29 Andrius R. <knutux@gmail.com> * src/enums.h, src/selection-chemistry.cpp, diff --git a/src/dyna-draw-context.h b/src/dyna-draw-context.h index ea6822f18..06aeca1e3 100644 --- a/src/dyna-draw-context.h +++ b/src/dyna-draw-context.h @@ -46,16 +46,27 @@ struct SPDynaDrawContext { SPEventContext event_context; + /** accumulated shape which ultimately goes in svg:path */ SPCurve *accumulated; + + /** canvas items for "comitted" segments */ GSList *segments; - /* current shape and curves */ + + /** canvas item for red "leading" segment */ SPCanvasItem *currentshape; + /** shape of red "leading" segment */ SPCurve *currentcurve; + + /** left edge of the stroke; combined to get accumulated */ SPCurve *cal1; + /** right edge of the stroke; combined to get accumulated */ SPCurve *cal2; - /* temporary work area */ + + /** left edge points for this segment */ NR::Point point1[SAMPLING_SIZE]; + /** right edge points for this segment */ NR::Point point2[SAMPLING_SIZE]; + /** number of edge points for this segment */ gint npoints; /* repr */ |
