Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
5f1de734
Commit
5f1de734
authored
15 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
BUG: method should be virtual to enable extension
parent
c65bf8b9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Visualization/otbVectorDataGlComponent.h
+5
-5
5 additions, 5 deletions
Code/Visualization/otbVectorDataGlComponent.h
with
5 additions
and
5 deletions
Code/Visualization/otbVectorDataGlComponent.h
+
5
−
5
View file @
5f1de734
...
...
@@ -123,20 +123,20 @@ protected:
/** Destructor */
virtual
~
VectorDataGlComponent
();
/** Printself method */
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
virtual
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
{
Superclass
::
PrintSelf
(
os
,
indent
);
}
/// Render a point
void
RenderPoint
(
const
PointType
&
p
,
const
RegionType
&
extent
,
const
AffineTransformType
*
transform
);
virtual
void
RenderPoint
(
const
PointType
&
p
,
const
RegionType
&
extent
,
const
AffineTransformType
*
transform
);
/// Render a polyline
void
RenderLine
(
const
LineType
*
l
,
const
RegionType
&
extent
,
const
AffineTransformType
*
transform
);
virtual
void
RenderLine
(
const
LineType
*
l
,
const
RegionType
&
extent
,
const
AffineTransformType
*
transform
);
// Render a complex polygon (with holes)
void
RenderPolygon
(
const
PolygonType
*
extRing
,
const
PolygonListType
*
intRings
,
const
RegionType
&
extent
,
const
AffineTransformType
*
transform
);
virtual
void
RenderPolygon
(
const
PolygonType
*
extRing
,
const
PolygonListType
*
intRings
,
const
RegionType
&
extent
,
const
AffineTransformType
*
transform
);
// Recursive rendering method
void
Render
(
InternalTreeNodeType
*
node
,
const
RegionType
&
extent
,
const
AffineTransformType
*
space2ScreenTransform
);
virtual
void
Render
(
InternalTreeNodeType
*
node
,
const
RegionType
&
extent
,
const
AffineTransformType
*
space2ScreenTransform
);
/// Frame a given point using the frame width and color (point
/// should be in gl screen coordinates)
...
...
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