Skip to content
Snippets Groups Projects
Commit b657da58 authored by Anthony Mallet's avatar Anthony Mallet
Browse files

[wip/oro-view] Delete: timeout

parent 763103c0
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,6 @@ SUBDIR+= octovis ...@@ -68,7 +68,6 @@ SUBDIR+= octovis
SUBDIR+= ompl SUBDIR+= ompl
SUBDIR+= openhrp3-simulator-wo-rtm SUBDIR+= openhrp3-simulator-wo-rtm
SUBDIR+= openhrp3-hrp2 SUBDIR+= openhrp3-hrp2
SUBDIR+= oro-view
SUBDIR+= orocos-bfl SUBDIR+= orocos-bfl
SUBDIR+= orocos-dot_service SUBDIR+= orocos-dot_service
SUBDIR+= orocos-yarp_transport SUBDIR+= orocos-yarp_transport
......
oro-view is an OpenGL-based viewer for semantic networks.
The code is originally based on Gource, by Andrew Caudwell.
oro-view requires oro-server (http://oro.openrobots.org) to
fetch the concepts and their relationships.
The graph can be zoomed/panned with the mouse.
It features a special, shiny, "Active Concept" focus method:
if a concept is asserted to belong to the ActiveConcept class,
then it pops on the screen, as a bright, warm, yellow spot.
# robotpkg Makefile for: knowledge/oro-view
# Created: Séverin Lemaignan, on Wed 19/10/2011
#
DISTNAME= oro-view-1.0.1
CATEGORIES= knowledge
MASTER_SITES= ${MASTER_SITE_OPENROBOTS:=oro-view/}
MASTER_REPOSITORY= ${MASTER_REPOSITORY_OPENROBOTS_TRAC}oro-view
COMMENT= OpenGL-based viewer for ontologies exposed by oro-server
MAINTAINER= severin.lemaignan@laas.fr
LICENSE= gnu-gpl-v3
GNU_CONFIGURE= yes
include ../../pkgtools/pkg-config/depend.mk
include ../../knowledge/liboro/depend.mk
include ../../devel/jsoncpp/depend.mk
include ../../mk/sysdep/ftgl.mk
include ../../mk/sysdep/SDL.mk
include ../../mk/sysdep/SDL_image.mk
include ../../mk/language/c.mk
include ../../mk/language/c++.mk
include ../../mk/robotpkg.mk
@comment Sat May 12 12:29:17 CEST 2012
bin/oroview
etc/oro-view.json
share/oro-view/beam.png
share/oro-view/bloom.tga
share/oro-view/classes.png
share/oro-view/comment.png
share/oro-view/fonts/Aller_Bd.ttf
share/oro-view/fonts/Aller_Lt.ttf
share/oro-view/gource.style
share/oro-view/instances.png
share/oro-view/literals.png
share/oro-view/no.png
share/oro-view/no_photo.png
share/oro-view/yes.png
# robotpkg depend.mk for: graphics/oro-view
# Created: Xavier Broquere on Fri, 29 Oct 2010
#
DEPEND_DEPTH:= ${DEPEND_DEPTH}+
OROVIEW_DEPEND_MK:= ${OROVIEW_DEPEND_MK}+
ifeq (+,$(DEPEND_DEPTH))
DEPEND_PKG+= oro-view
endif
ifeq (+,$(OROVIEW_DEPEND_MK)) # ------------------------------------------------
PREFER.oro-view?= robotpkg
SYSTEM_SEARCH.oro-view=\
bin/oroview
DEPEND_USE+= oro-view
DEPEND_ABI.oro-view?= oro-view>=1.0
DEPEND_DIR.oro-view?= ../../wip/oro-view
endif # OROVIEW_DEPEND_MK ------------------------------------------------------
DEPEND_DEPTH:= ${DEPEND_DEPTH:+=}
SHA1 (oro-view-1.0.1.tar.gz) = a292a7e5d781f38d050e49d40fb6b53030501f2a
RMD160 (oro-view-1.0.1.tar.gz) = 735e628a0d70f6264ca96c6c568b3ab9ef366866
Size (oro-view-1.0.1.tar.gz) = 336853 bytes
SHA1 (patch-aa) = bd45ce1ffac9099915f8496c337cbe5b1bc5ed94
Fix a call to std::pow(int, int) that gcc-4.2.1 doesn't like
Use std::pow(float, int) instead.
--- src/node_renderer.cpp~ 2011-10-13 15:29:31.000000000 +0200
+++ src/node_renderer.cpp 2012-05-11 11:24:03.000000000 +0200
@@ -105,7 +105,7 @@
if (current_distance_to_selected <= 1) return 1.0f;
- int distance = std::max(1, current_distance_to_selected);
+ float distance = std::max(1, current_distance_to_selected);
//float level = FADE_TIME - (idle_time * distance)/FADE_TIME;
// We use a function in (1-x^3) to smooth the fading of nodes
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment