Search the web
Sign In
New User? Sign Up
webots-users · Webots Users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1705 - 1734 of 3393   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1705
Hi If you want to adjust the Video time, you have to change the Basic Time Step in the WorldInfo node. You can find more information about it in the User Guide...
Aiman
aimanmusa
Offline Send Email
Feb 1, 2007
8:15 am
1706
Hi Stevie, The only way is to use these supervisor_field_get(..) functions. I would recommend you to do it in the first iterations of the main loop (you can ...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 1, 2007
10:02 am
1707
Dear All, What is the value of M_PI dfined constant in webots it is in radians or degrees. Mr. Vinayak S. Nageli Scientis. Center For Artificial Intelligance...
vinayak nageli
nagelivs
Offline Send Email
Feb 1, 2007
10:33 am
1708
Hello, M_PI is a standard C constant that represents the number pi, approx 3.1415... So it does not have units ... It is normally defined in the standard...
Yvan Bourquin
yvanix
Offline Send Email
Feb 1, 2007
12:37 pm
1709
Hello, In summary, to make a real-time video, you must tune basicTimeStep and displayRefresh (WorldInfo) such that: basicTimeStep * displayRefresh = 1 / 25 ...
Yvan Bourquin
yvanix
Offline Send Email
Feb 1, 2007
12:39 pm
1710
Hello I have been looking at the performance of my robot in simulation and the real robot. Everytime I increase the walking speed of the robot in simulation...
Denis Akinmolasire
denisakinmol...
Offline Send Email
Feb 2, 2007
6:18 pm
1711
hi i know there is a supervisor_set_controller() function to allow a controller to be changed. is it possible for a supervisor to get the filename of a...
scaryas
Offline Send Email
Feb 6, 2007
2:43 pm
1712
Hello Stephen, In the main() function of the controller: argv[0] is the executable file name: int main(int argc, char *argv[]) { printf("filename: %s\n",...
Yvan Bourquin
yvanix
Offline Send Email
Feb 6, 2007
2:50 pm
1713
what following expression will do in webots 1. static float* depth_buffer; 2. z_dcs = *(depth_buffer + x*width + y); 3. z_ndcs = 2.0*z_dcs - 1.0; what...
vinayak nageli
nagelivs
Offline Send Email
Feb 7, 2007
3:32 am
1714
Hi everyone, I'm having some difficulty making controllers using borland C builder to work with webots. If I don't include the Controler.lib file I get a long...
Anthony Morse
anthony.morse@...
Send Email
Feb 7, 2007
2:39 pm
1715
Hi everyone, It seems the problem is that MSVC uses a different format for it's .lib files, I either need the file Controller.lib in an OMF format, or the ...
Anthony Morse
anthony.morse@...
Send Email
Feb 7, 2007
3:02 pm
1716
Dear Anthony, To convert the Controller.lib file from the MSVC format to the Borland format, there is a tool provided within your Borland environment. This ...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 8, 2007
9:24 am
1717
This will only work if the .lib file contains only commonly used commands. I can generate an appropriately formatted Controller_bcpp.lib file using this but...
Anthony Morse
anthony.morse@...
Send Email
Feb 8, 2007
10:00 am
1718
hello, I would like to do some simulations using the draganflyer quadrotor helicopters (http:// www.rctoys.com/rc-products-catalog/RC-HELICOPTERS.html ) and I...
gattobestia
Offline Send Email
Feb 8, 2007
12:55 pm
1719
An update... We have a console application working using the khepera simulation and everything seems to be fine there, but what we want is an application using...
Anthony Morse
anthony.morse@...
Send Email
Feb 8, 2007
1:25 pm
1720
That sounds very strange... On my side, I downloaded the free version of the Borland compiler and I could compile the void.c example. I created a Borland...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 8, 2007
2:06 pm
1721
Hi, A quick note to let you know that we just released Webots 5.1.12. You can download it from our web site at: ...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 9, 2007
2:56 pm
1722
Dear All, I am trying to plot trajectories in 3d. I am using webots for simulating a manipulator. I created a PEN attached to the gripper and made a "canvas"...
Speranzon, Alberto
alberto.speranzon@...
Send Email
Feb 13, 2007
5:14 pm
1723
Hello Alberto, The Pen device can only draw on the XZ-plane ... However, if you want you can add 3D OpenGL plot with Webots physics plugin function:...
Yvan Bourquin
yvanix
Offline Send Email
Feb 13, 2007
5:29 pm
1724
please can you post your code if your "3d pen" works? thank you ... Da: webots-users@yahoogroups.com [mailto:webots-users@yahoogroups.com] Per conto di Yvan...
pentiumII_@...
ingegneriame...
Offline Send Email
Feb 14, 2007
10:34 am
1725
Hi, I have been investigating how to use the Visual C++ debugger with a Webots controller and it is actually very simple: Simply add the following line in your...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 14, 2007
10:41 am
1726
Hi Olivier, I sent you an email asking you how to implement a control panel for a custom robot. You said me we have an example of this based on the wxWidgets...
Vicente
sentvisent
Offline Send Email
Feb 15, 2007
5:22 pm
1727
Hi Vicente, This sample controller program is included in recent versions of Webots and may not be included in 5.1.0 which is pretty old. In Webots 5.1.12, the...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 16, 2007
7:42 am
1728
Hi, I'm developing (trying...) a controller with C# and Visual Studio 2005. It is supposed that my main function has to call firstly the robot_live function,...
Vicente
sentvisent
Offline Send Email
Feb 16, 2007
12:47 pm
1729
... Yes, robot_step() (not setp) should called repeatedly. ... They are documented here: ...
Olivier Michel
oliviermichelus
Offline Send Email
Feb 16, 2007
1:15 pm
1730
oohhhhh I'm stupid...I didn't think that I have the info in the .h files.... sorry... I'm not used to the C programing... Thanks once more ... 2005. ... ...
Vicente
sentvisent
Offline Send Email
Feb 17, 2007
1:08 pm
1731
Hello Alberto, I don't have time to write the code for you but there is absolutely no doubt that this would work ! Basically you have to create a physics...
Yvan Bourquin
yvanix
Offline Send Email
Feb 20, 2007
2:03 pm
1732
Hi, Is there any way to set the accumulated charge level of a battery charger from a supervisor? I want a switch in the environment to enable and disable the...
Anthony Morse
anthony.morse@...
Send Email
Feb 21, 2007
2:37 pm
1733
Hello Tony, It is not possible to change the energy level of a charger, however what is possible is to control the energy level of the robots, and therefore...
Yvan Bourquin
yvanix
Offline Send Email
Feb 21, 2007
3:21 pm
1734
Hi Yvan, Thanks for this, I'm still having a few problems though... What does assert(robot); do? this seems to cause compilation problems but without it...
Anthony Morse
anthony.morse@...
Send Email
Feb 22, 2007
10:44 am
Messages 1705 - 1734 of 3393   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help