Tagged Questions
0
votes
1answer
61 views
Python Graphic Draw
tdondur x coordinate, y coordinate s.but i can't it. if you can help. Thank you all in advance. now only drawn tdondur value. how to plot the value of s.
from math import e, exp,pow
import pylab
...
0
votes
1answer
10 views
Python Graphics GraphWin GetPixel [closed]
I am using the Python Graphics Library for a nice little AI project.
In the project, we want the individual 'organisms' to be able to 'see' whats in front of them, and we're doing this by ...
-1
votes
1answer
63 views
How to use matplotlib in my Python Program [closed]
Have a program written in Python. Matplotlib need to draw graphics using the program. "dalgafonksiyonu" and "x" by using the values have to create the chart. Single "for" and "while" loops, I do not ...
1
vote
1answer
28 views
Cross platform, python based, rich-graphics application for mapping and gps: GTK or wxWidgets? [closed]
I am planning to implement, as an exercise and for personal use, in a very relaxed pace, a GPS/Mapping/Cycling desktop application, with Python as the primary language. It must be cross-platform ...
1
vote
0answers
11 views
Texturing on 3d Blocks using pycollada
I am developing a python script which will be able to generate .DAE (COLLADA) files along with the associated KML files for developing 3D models of buildings. I have the street images of the ...
2
votes
1answer
95 views
How to visualize a hidden Markov model in Python?
I think the question is clear enough. I want to make a hidden Markov model in Python and draw a vizualization model of it. So, it's something like this picture:
Is there any module to do that? I've ...
1
vote
0answers
48 views
How to draw 10,000+ objects and move them and get 60fps+ in Vizard Python
I am trying to create a world in Vizard 4.0 that automatically generates 10,000+ objects in it. Once these objects are made, I want to fly through them or make them move at a certain speed in any ...
2
votes
1answer
76 views
How to center and manipulate Tkinter widgets?
I don't believe that something similar has already been asked. I am beginning a project, basically and email client, in Python. I know it may sound odd, but it's just for fun.
I am just beginning ...
1
vote
1answer
138 views
saving images in python at a very high quality
How can I save python plots at very high quality?
That is, when I keep zooming in on the object saved in a pdf file, there is no blurring?
Also, what would be the best mode to save it in?
png, eps? ...
1
vote
0answers
63 views
changing the color of matplotlib shpere and adjusting shape python
Edit
The only part that I would still like a solution for is getting the spheres to look spherical. If I scale the axis the same, the spheres are too small but spherical. Is there a way to then ...
0
votes
1answer
123 views
How to speed up python's 'turtle' function and stop it freezing at the end
I have written a turtle program in python, but there are two problems.
It goes way too slow for larger numbers, I was wonder how I can speed up turtle.
It freezes after it finishes and when clicked ...
0
votes
0answers
57 views
How do I use turtle graphics to plot the graph of a stock?
I need to write a program than can plot the graph (over the last 20 trading days) of any stock whose symbol the user inputs for a homework assignment. The first part of the code is given and I have to ...
0
votes
1answer
87 views
python vector * vector------> matrix
In the python computer graphics kit, there is a vec3 type for the representation of three-component vectors, but how can I do the following multiplication:
A three-component vector multiply by its ...
1
vote
0answers
53 views
Python- have drawn a game board, how to color the “border”?
I created a game board:
win = GraphWin ("Gameboard",500,500)
win.setCoords(0.0,0.0,10.0,10.0)
drawBoard(win)
for i in range(10):
Line(Point(0,i),Point(10,i)).draw(win)
for x in range(10):
...
2
votes
1answer
52 views
Antialiasing of Curves by Discrete Pre-filtering
I'm looking to implement the bezier curve algorithm described in the paper "Antialiasing of Curves by Discrete Pre-filtering" by A.E. Fabris and A.R. Forrest. However I'm missing a core piece of the ...