Search the web
Sign In
New User? Sign Up
antiprism
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 979 - 1008 of 4035   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
979
I made a mistake in N-icons study which is now corrected. I had stated that Hybrid N-icons were self dual. They are almost but not quite! They always have one...
vortexswirling
Offline Send Email
Oct 3, 2007
12:21 am
980
Hi Roger ... The dual does seem like the original! ... It is quite short geom_v dual; get_dual(geom, dual, rad, cent); Adrian. -- Adrian Rossiter ...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 3, 2007
9:24 am
981
Hi Adrian, ... It looks that way and that is why I never questioned it. I didn't even pay attention to my own face and vertex counts! Otherwise I would have ...
vortexswirling
Offline Send Email
Oct 3, 2007
5:21 pm
982
P.S. The other day I came upon this page of Paul Roberts. http://homepage.ntlworld.com/paul.roberts99/Other_sphericon_links.html Notice he makes mention of...
vortexswirling
Offline Send Email
Oct 3, 2007
7:57 pm
983
Hi Roger ... You can set the colour with geom.set_v_col(vert_index, col); Adrian. -- Adrian Rossiter adrian@... Home: http://antiprism.com/adrian...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 4, 2007
7:50 am
984
Hi Roger I haven't forgotten this one! ... I don't have clear criteria for inclusion, but it is mainly that a program feels "complete" or "general". The fact...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 4, 2007
10:07 am
985
Hi Adrian, The other day "plantri" was mentioned somewhere. On that same page is fullgen which is for fullerenes. I've long known about this program and one...
vortexswirling
Offline Send Email
Oct 5, 2007
12:14 am
986
Hi Roger ... Parsing the output looks straightforward. One of the output options (code 7) is practically the same as the face data in an OFF file. ... I...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 5, 2007
9:08 am
987
Hi Adrian, ... Thanks, I didn't think of this because I usually set the color on the last vertex. Of course any index will go in there! Doh. I'm 90 percent...
vortexswirling
Offline Send Email
Oct 5, 2007
9:31 pm
988
... Whoa! Its way more general than this! I'm missing lots of cases! This would be way more apparent if we could have one of these in our hands and twist it...
vortexswirling
Offline Send Email
Oct 6, 2007
8:28 pm
989
Hi Roger ... I like the -I option. I don't think I tried that before. ... I think the formula for the number of suraces is the greatest common divisor of N and...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 7, 2007
3:51 pm
990
Hi Adrian, What are you use for your gcd function? The ones I've pulled off the net all give different answers that this. If this is a property I'd like to...
vortexswirling
Offline Send Email
Oct 7, 2007
8:08 pm
991
Hi Roger ... The one curently in Antiprism is long hcf(long m, long n) { if(m == 0) return n; if(n == 0) return m; return hcf(n,m%n); } Which implements the...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 7, 2007
10:06 pm
992
Hi Roger ... I think the general formula for the number of surfaces in even, odd and dual n_icons could be (gcd(N, 2T) + axis_edges) / 2 Where axis_edges is...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 8, 2007
11:56 am
993
Hi Adrian, ... Can you show the function you are using for gcd? Doing it this way, the program would have been done quite differently. I have gotten rid of the...
vortexswirling
Offline Send Email
Oct 8, 2007
2:52 pm
994
Hi Roger ... I have been doing them by hand. If you use the Antiprism GCD function that I posted (hcf) there is a problem in that it will return a negative...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 8, 2007
7:53 pm
995
Hi Adrian, The problem was that I was placing the default N (which = 4) in the formula. Now that I'm place the code in the right place in the program it works....
vortexswirling
Offline Send Email
Oct 9, 2007
3:20 am
996
Hi Roger ... The brackets are different to the formula I gave, which would be long s = (hcf(n, 2*t-t_mod) + axis_edges) / 2; (The bracketted expression is...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 9, 2007
10:01 am
997
Hi Adrian, ... Egad! You have determined that you could sweep these out without twisting anything?! That's amazing. I think if you'd have written this program...
vortexswirling
Offline Send Email
Oct 9, 2007
6:58 pm
998
Hi Roger ... My own programs tend to improve incrementally. I rarely start with a solution that I stick with! ... Thomas Banchoff's book Beyond the Third...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 10, 2007
10:02 am
999
Hi Adrian, ... listing/0716750252/ref=dp_olp_1/104-4653475-5104736 I picked up, I think, the very one you saw. It has a dust jacket etc for 78 cents. Shipping...
vortexswirling
Offline Send Email
Oct 10, 2007
2:29 pm
1000
Hi Roger ... I think I paid $3.00 for mine! I also bought it as "very good". I was very pleased when it arrived as it appeared to be unread and was in perfect...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 10, 2007
5:02 pm
1001
Hi Adrian, ... was ... Do you have any plans for 4D at some point? ... Well, I thought it was working but not quite. n_icons -H -n 12 | pol_recip | antiview ...
vortexswirling
Offline Send Email
Oct 10, 2007
7:58 pm
1002
Hi Roger ... No real plans at the moment. There is geometric support for 4D in the Antiprism code. You can specify a set of points in 4D and rotate them,...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 11, 2007
9:04 am
1003
Hi Adrian, ... Stella4D has several ways to view 4D. But animation must be performed with a mouse drag. This goes back to something we talked about in the ...
vortexswirling
Offline Send Email
Oct 11, 2007
5:15 pm
1004
Hi Adrian, I've never done a try/catch before but I have to now. In the vrml parser code there is some kind of error which sets a pointer even though it is bad...
vortexswirling
Offline Send Email
Oct 12, 2007
3:27 pm
1005
Hi, ... should have been int tmp = color_table->getNColors(); but the idea is the same. The color_table pointer is invalid and it will error out there. Roger...
vortexswirling
Offline Send Email
Oct 12, 2007
4:24 pm
1006
Hi Roger ... It is difficult to say, but it doesn't sound right. For example, if the pointer returned after the error was some random value then it is possible...
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 12, 2007
6:33 pm
1007
Hi Roger ... I have just added in an "untimed" test version of spinning, which is pretty much working. I will have to add some timing code for the release....
Adrian Rossiter
adrianrossiter
Offline Send Email
Oct 12, 2007
8:13 pm
1008
Hi Adrian, ... The problem is there is little example code and I've found hardly anyone uses this on the internet. Everyone must write their own parser or...
vortexswirling
Offline Send Email
Oct 13, 2007
9:33 am
Messages 979 - 1008 of 4035   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