0
|
1 package Bio::Graphics::Glyph::oval;
|
|
2
|
|
3 use strict;
|
|
4 use vars '@ISA';
|
|
5 use Bio::Graphics::Glyph::ellipse;
|
|
6 @ISA = 'Bio::Graphics::Glyph::ellipse';
|
|
7
|
|
8 1;
|
|
9
|
|
10 __END__
|
|
11
|
|
12 =head1 NAME
|
|
13
|
|
14 Bio::Graphics::Glyph::oval - The "oval" glyph
|
|
15
|
|
16 =head1 SYNOPSIS
|
|
17
|
|
18 See L<Bio::Graphics::Panel> and L<Bio::Graphics::Glyph>.
|
|
19
|
|
20 =head1 DESCRIPTION
|
|
21
|
|
22 This glyph draws an oval instead of a box. It is an alias for the
|
|
23 "ellipse" glyph.
|
|
24
|
|
25 =head2 OPTIONS
|
|
26
|
|
27 The following options are standard among all Glyphs. See
|
|
28 L<Bio::Graphics::Glyph> for a full explanation.
|
|
29
|
|
30 Option Description Default
|
|
31 ------ ----------- -------
|
|
32
|
|
33 -fgcolor Foreground color black
|
|
34
|
|
35 -outlinecolor Synonym for -fgcolor
|
|
36
|
|
37 -bgcolor Background color turquoise
|
|
38
|
|
39 -fillcolor Synonym for -bgcolor
|
|
40
|
|
41 -linewidth Line width 1
|
|
42
|
|
43 -height Height of glyph 10
|
|
44
|
|
45 -font Glyph font gdSmallFont
|
|
46
|
|
47 -connector Connector type 0 (false)
|
|
48
|
|
49 -connector_color
|
|
50 Connector color black
|
|
51
|
|
52 -label Whether to draw a label 0 (false)
|
|
53
|
|
54 -description Whether to draw a description 0 (false)
|
|
55
|
|
56 =head1 BUGS
|
|
57
|
|
58 Please report them.
|
|
59
|
|
60 =head1 SEE ALSO
|
|
61
|
|
62 L<Bio::Graphics::Panel>,
|
|
63 L<Bio::Graphics::Glyph>,
|
|
64 L<Bio::Graphics::Glyph::arrow>,
|
|
65 L<Bio::Graphics::Glyph::cds>,
|
|
66 L<Bio::Graphics::Glyph::crossbox>,
|
|
67 L<Bio::Graphics::Glyph::diamond>,
|
|
68 L<Bio::Graphics::Glyph::dna>,
|
|
69 L<Bio::Graphics::Glyph::dot>,
|
|
70 L<Bio::Graphics::Glyph::ellipse>,
|
|
71 L<Bio::Graphics::Glyph::extending_arrow>,
|
|
72 L<Bio::Graphics::Glyph::generic>,
|
|
73 L<Bio::Graphics::Glyph::graded_segments>,
|
|
74 L<Bio::Graphics::Glyph::heterogeneous_segments>,
|
|
75 L<Bio::Graphics::Glyph::line>,
|
|
76 L<Bio::Graphics::Glyph::pinsertion>,
|
|
77 L<Bio::Graphics::Glyph::primers>,
|
|
78 L<Bio::Graphics::Glyph::rndrect>,
|
|
79 L<Bio::Graphics::Glyph::segments>,
|
|
80 L<Bio::Graphics::Glyph::ruler_arrow>,
|
|
81 L<Bio::Graphics::Glyph::toomany>,
|
|
82 L<Bio::Graphics::Glyph::transcript>,
|
|
83 L<Bio::Graphics::Glyph::transcript2>,
|
|
84 L<Bio::Graphics::Glyph::translation>,
|
|
85 L<Bio::Graphics::Glyph::triangle>,
|
|
86 L<Bio::DB::GFF>,
|
|
87 L<Bio::SeqI>,
|
|
88 L<Bio::SeqFeatureI>,
|
|
89 L<Bio::Das>,
|
|
90 L<GD>
|
|
91
|
|
92 =head1 AUTHOR
|
|
93
|
|
94 Lincoln Stein E<lt>lstein@cshl.orgE<gt>
|
|
95
|
|
96 Copyright (c) 2001 Cold Spring Harbor Laboratory
|
|
97
|
|
98 This library is free software; you can redistribute it and/or modify
|
|
99 it under the same terms as Perl itself. See DISCLAIMER.txt for
|
|
100 disclaimers of warranty.
|
|
101
|
|
102 =cut
|