VMD-L Mailing List
From: Bharat Sharma (bharatsolbridge_at_gmail.com)
Date: Tue Jun 23 2015 - 11:45:18 CDT
- Next message: Bharat Sharma: "Re: Drawing extended arrow to show direction vector on VMD"
- Previous message: Josh Vermaas: "Re: Drawing extended arrow to show direction vector on VMD"
- Next in thread: Axel Kohlmeyer: "Re: Drawing extended arrow to show direction vector on VMD"
- Reply: Axel Kohlmeyer: "Re: Drawing extended arrow to show direction vector on VMD"
- Reply: Josh Vermaas: "Re: Drawing extended arrow to show direction vector on VMD"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Hello Experts,
I would like to draw the arrow lines on VMD display connecting two atoms. I
follow the following.
proc vmd_draw_arrow {mol start end} {
# an arrow is made of a cylinder and a cone
set middle [vecadd $start [vecscale 0.9 [vecsub $end $start]]]
graphics $mol cylinder $start $middle radius 0.15
graphics $mol cone $middle $end radius 0.25
}
vmd_draw_arrow 0 $pos1 $pos2
I need to extend the line to show the angle between two vectors. How do I
do that? One way to do this is finding the coordinate of end point, but how
can I find it?
Any suggestions are appreciated.
Best regards,
Bharat Sharma
- Next message: Bharat Sharma: "Re: Drawing extended arrow to show direction vector on VMD"
- Previous message: Josh Vermaas: "Re: Drawing extended arrow to show direction vector on VMD"
- Next in thread: Axel Kohlmeyer: "Re: Drawing extended arrow to show direction vector on VMD"
- Reply: Axel Kohlmeyer: "Re: Drawing extended arrow to show direction vector on VMD"
- Reply: Josh Vermaas: "Re: Drawing extended arrow to show direction vector on VMD"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]