diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2007-07-11 08:01:56 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2007-07-11 08:01:56 +0000 |
| commit | 622194729542a21fec2330189f7cb3dabfaf1e10 (patch) | |
| tree | 7685c0ee856cfad863e376a3189543905b6fc6da /src/line-geometry.h | |
| parent | apparently filter-dialog cpp file wasn't added to translatable ones as well :) (diff) | |
| download | inkscape-622194729542a21fec2330189f7cb3dabfaf1e10.tar.gz inkscape-622194729542a21fec2330189f7cb3dabfaf1e10.zip | |
Move 3D axis manipulation functions to separate file
(bzr r3226)
Diffstat (limited to 'src/line-geometry.h')
| -rw-r--r-- | src/line-geometry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/line-geometry.h b/src/line-geometry.h index 53f39db39..b1eae366c 100644 --- a/src/line-geometry.h +++ b/src/line-geometry.h @@ -50,8 +50,8 @@ void create_canvas_point(NR::Point const &pos, double size = 4.0, guint32 rgba = void create_canvas_line(NR::Point const &p1, NR::Point const &p2, guint32 rgba = 0xff00007f); -/** A function to print out the Line. It just prints out the coordinates of start end end point - on the given output stream */ +/** A function to print out the Line. It just prints out the coordinates of start point and + direction on the given output stream */ inline std::ostream &operator<< (std::ostream &out_file, const Line &in_line) { out_file << "Start: " << in_line.pt << " Direction: " << in_line.v_dir; return out_file; |
