How can i draw cylindrical arrow on the end of each vector

Hi all!
Please, help me!
I build 3D vector field.
Please hint me, how can i draw cylindrical arrow on the end of each vector.
Thx in advance!

gluCylinder sounds like what you’re looking for.

Another way would be with glutSolidCone for the tip.

But just using gluCylinder will work for both.

first gluCylinder to draw a long cylinder.
second gluCylinder to make point, the bottom radius greater then the first cylinder and the top radius 0 to make a point.

-------> look’s something like this.

Originally posted by GMV:
Hi all!
Please, help me!
I build 3D vector field.
Please hint me, how can i draw cylindrical arrow on the end of each vector.
Thx in advance!