From 691ee3b8810599abfb5afce6ac45976fa87a9650 Mon Sep 17 00:00:00 2001 From: sekelsenmat Date: Tue, 16 Aug 2011 15:06:45 +0000 Subject: [PATCH] fpvectorial: Updates the comments git-svn-id: trunk@18221 - --- packages/fpvectorial/src/fpvectorial.pas | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/packages/fpvectorial/src/fpvectorial.pas b/packages/fpvectorial/src/fpvectorial.pas index 29b2cf1602..f6ab6f6156 100644 --- a/packages/fpvectorial/src/fpvectorial.pas +++ b/packages/fpvectorial/src/fpvectorial.pas @@ -64,7 +64,7 @@ type {@@ Font orientation is measured in degrees and uses the same direction as the LCL TFont.orientation, which is counter-clockwise. - Zero is the normal, horizontal, orientation. + Zero is the normal, horizontal, orientation, directed to the right. } Orientation: Double; end; @@ -172,10 +172,7 @@ type end; {@@ - TvText represents a text in memory. - - At the moment fonts are unsupported, only simple texts - up to 255 chars are supported. + TvText represents a text entity. } TvText = class(TvEntity) public @@ -580,7 +577,7 @@ end; Should be followed by zero or more calls to AddPointToPath and by a call to EndPath to effectively add the data. - @see StartPath, AddPointToPath + @see EndPath, AddPointToPath } procedure TvVectorialDocument.StartPath(AX, AY: Double); var @@ -991,7 +988,7 @@ end; {@@ Reads the document from a file. - Any current contents will be removed. + Any current contents in this object will be removed. } procedure TvVectorialDocument.ReadFromFile(AFileName: string; AFormat: TvVectorialFormat); @@ -1009,7 +1006,7 @@ begin end; {@@ - Reads the document from a file. A variant that auto-detects the format from the extension. + Reads the document from a file. A variant that auto-detects the format from the extension and other factors. } procedure TvVectorialDocument.ReadFromFile(AFileName: string); var @@ -1022,7 +1019,7 @@ end; {@@ Reads the document from a stream. - Any current contents will be removed. + Any current contents in this object will be removed. } procedure TvVectorialDocument.ReadFromStream(AStream: TStream; AFormat: TvVectorialFormat);