Hello,
Will somebody help me. The MSW Logo programs such as Frank
Caggiano's hypercube program will not run; simple logo commands will not
save, and my computer freezes to often.
Thanks,
--
Charley H. Settles
Educational & Political Astrology
255 Massachusetts Avenue, #808
Boston, MA 02115-3514
617-267-3864
> The message below is being cross-posted from the LogoForum. Please
> reply here at comp.lang.logo and it will be crossposted back to the
> LogoForum. The original author of this message is
> csett...@verizon.nospam.net.
>
>
> Hello,
> Will somebody help me. The MSW Logo programs such as Frank
> Caggiano's hypercube program will not run; simple logo commands will not
> save, and my computer freezes to often.
> Thanks,
Sorry!!! I had the same problem when I bought my "new" PC with
Vista, and it isn't the only one software with compatibility
problems in Windows Vista.
I just found one solution: I CAME BACK TO WINDOWS XP PRO!!!
That's all folks!!!
GOD BLESS YOU ALL!!!!!!!
Juan J. Paredes G.
From Curicó, CHile, South America, with love
> The message below is being cross-posted from the LogoForum. Please
> reply here at comp.lang.logo and it will be crossposted back to the
> LogoForum. The original author of this message is
> csett...@verizon.nospam.net.
>
>
> Hello,
> Will somebody help me. The MSW Logo programs such as Frank
> Caggiano's hypercube program will not run; simple logo commands will not
> save, and my computer freezes to often.
> Thanks,
Charley, as I remember, Frank only used Microwords.
Please be more specific(attach or copy to your next e-maile) the
hypercube
program
you are talking about. I have many of Frank's programs but a Search on
this
newer computer finds the only "hypercube" programs in Elica.
Dale
PS We(on the LogoForum) have not heard from Frank in a few years.
In article <john.stclair-BAC8...@news.verizon.net>,
dale...@worldnet.nospam.att.net wrote:
Hi Dale,
See the program posted below [
http://www.crystal-objects.com/logo/hypc.html ].
Thanks,
Charley
HyperCube in Logo
The hypercube on my Home Page was created using MSWLogo, a free
implementation of LOGO by George Mills. MSWLogo now includes commands to
save images in gif format and allows you to create gif animations.
The gif animation created in MSWLogo was combined with the graphics
using GIF Movie Gear 2.5.
The LOGO code for the hypercube appears below:
to hypc2 :len
; :ps is pensize
; :homexy is the center of the hyper square
; :ohd is the original heading
; :origpen is the original pen status
(local "ps "homexy "ohd "origpen)
;
; save pen modes
make "origpen pen
make "ps (list 2 2)
make "centerxy pos
make "ohd heading
setpensize :ps
pu
lt 90
fd :len + :len/5
rt 90 fd :len/2
pd
(gifsave "hypc.gif 50 "False -1)
repeat 8
[
sq :len
lt 45
bk :len
(gifsave "hypc.gif 50 "True -1)
]
pu
setpos :centerxy
setheading :ohd
setpen :origpen
end
to sq :len
repeat 4 [fd :len rt 90]
end
In article <john.stclair-9943...@news.verizon.net>,
Charley H. Settles wrote:
> The message below is being cross-posted from the LogoForum. Please
> reply here at comp.lang.logo and it will be crossposted back to the
> LogoForum. The original author of this message is
> csett...@verizon.nospam.net.
>
>
> Hello,
> Will somebody help me. The MSW Logo programs such as Frank
> Caggiano's hypercube program will not run; simple logo commands will not
> save, and my computer freezes to often.
> Thanks,
http://www.crystal-objects.com
Charley, I assume that the hypercube you are wanting to duplicate is
this one?
Suggest that you, and other LogoForum members, do their own versions.
Also I suggest that everyone use the latest version of "MSWLogo"
now named FMSLogo at
http://sourceforge.net/projects/fmslogo/
But then again, maybe I don't know why you want this particular
hypercube programmed with MSWLogo?
Or maybe, bottom line, you are mostly concerned about Vista. I am using
XP so can't help you there but I assume FMSLogo will work just fine in
Vista.
Dale
to aa :len
cs ht
; :ps is pensize
; :homexy is the center of the hyper square
; :ohd is the original heading
; :origpen is the original pen status
(local "ps "homexy "ohd "origpen)
;
; save pen modes
make "origpen pen
make "ps (list 2 2)
make "centerxy pos
make "ohd heading
setpensize :ps
pu
lt 90
fd :len + :len/5
rt 90 fd :len/2
pd
(gifsave "hypc.gif 50 "False -1)
repeat 8[
sq :len
lt 45
bk :len
SETACTIVEAREA [-200 -50 200 300]
gifsave "hypc.gif
]
pu
setpos :centerxy
setheading :ohd
setpen :origpen
end
to sq :len
repeat 4 [fd :len rt 90]
end
Make "centerxy [0 0]
Hi Dale,
Perhaps the problem is Vista. In fact, I am using FMSLogo, but using
the MSWLogo hypercube program. But beyond this, FMSLogo keeps freezing
on my Vista computer. Perhaps, I should use Elica? Anyhow, what other
hypercube Logo program are you aware off?
Thanks,
Charles Settles
Dale,
I got this error message when I pasted your program in FMSLogo on my
Vista computer :len has no value
Thanks,
Charley
In article <john.stclair-EA9C...@news.verizon.net>,