Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
ee6a3c62
Commit
ee6a3c62
authored
10 years ago
by
Goik Martin
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://version.mi.hdm-stuttgart.de/git/GoikLectures
parents
cf26925a
c97d7f22
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Sd1/Ref/Fig/svgGeometry.png
+0
-0
0 additions, 0 deletions
Sd1/Ref/Fig/svgGeometry.png
Sd1/swd1.xml
+26
-5
26 additions, 5 deletions
Sd1/swd1.xml
with
26 additions
and
5 deletions
Sd1/Ref/Fig/svgGeometry.png
0 → 100644
+
0
−
0
View file @
ee6a3c62
40.1 KiB
This diff is collapsed.
Click to expand it.
Sd1/swd1.xml
+
26
−
5
View file @
ee6a3c62
...
...
@@ -1574,13 +1574,12 @@ public class Circle {
<qandaentry>
<question>
<para>
Our current Circle and Rectangle instances are only
shapes yet and do not allow to be moved in a coordinate
system:
</para>
<para>
Our current Circle and Rectangle instances are only shapes
yet and do not allow to be moved in a coordinate system:
</para>
<itemizedlist>
<listitem>
<para>
Add two more instance variables x and y and
<para>
Add two more instance variables x and y and
corresponding setter methods to account for a shapes origin
being different from (0,0). The following hint may be
helpful:
</para>
...
...
@@ -1646,7 +1645,29 @@ public class Circle {
<para>
Implement the method
<methodname>
void
writeSvg()
</methodname>
in both classes
<classname>
Rectangle
</classname>
and
<classname>
Circle
</classname>
.
</para>
<classname>
Circle
</classname>
. This should produce an output
result like:
</para>
<programlisting>
<
!DOCTYPE html
>
<
html
>
<
body
>
<
svg width='300' height='200'
>
<emphasis
role=
"bold"
>
<
rect width='100.0' height='80.0' x='40.0' y='20.0'' style='fill:rgb(0,255,0);stroke-width:3;stroke:rgb(0,0,0)'/
>
</emphasis>
<emphasis
role=
"bold"
>
<
circle r='60.0' cx='60.0' cy='20.0' style='fill:rgb(0,0,255);stroke-width:3;stroke:rgb(0,0,0)'/
>
</emphasis>
<
/svg
>
<
/body
>
<
/html
>
</programlisting>
<para>
You may enter this output into a file sfg.html. A web
browser should visualize this output as:
</para>
<informalfigure>
<mediaobject>
<imageobject>
<imagedata
fileref=
"Ref/Fig/svgGeometry.png"
/>
</imageobject>
</mediaobject>
</informalfigure>
</question>
<answer>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment