Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Logo > Re: [LogoForum]...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 1 Topic 1519 of 1588
Post > Topic >>

Re: [LogoForum] Graphing Utility

by "John St. Clair" <john.stclair@[EMAIL PROTECTED] > Jan 11, 2008 at 04:56 AM

The message below is being cross-posted from the LogoForum.  Please 
reply here at comp.lang.logo and it will be cross-posted back to the 
LogoForum.  The original author of this message is 
jotape1960@[EMAIL PROTECTED]
 In LogoForum@[EMAIL PROTECTED]
 Pavel Boytchev <pavel@[EMAIL PROTECTED]
> wrote:
>
> jbhnj1975 wrote:
> > 
> > I would like to start with something simple like an xy plane 
graphing a 
> > parabola as y=(+/-)x^2
> > 
> > Can I create a program (in Elica/Logo) that can solve and graph 
> > equations?
> 
> 
> Solving an equation could be tricky. Some equations have nice and 
easy 
> solutions, others can be solved only approximately. So the answer 
of 
> this part of your question is YES AND NO.
> 
> As for graphing, this is (usually) much easier. Here is a program 
that 
> switches in 2D view, draws both axes and the two parabolas: y=x^2 
and 
> y=-x^2 for x in [-2,2).
> 
> 
> run "graphix
> singlebuffer
> lookat (vector 0 0 20) (vector 0 0 0) (vector 0 1 0)
> 
> paint segment (point -3 0) (point 3 0)
> paint segment (point 0 -5) (point 0 5)
> 
> make "x -2
> 
> repeat 400
> [
> paint point :x :x*:x
> paint point :x 0-:x*:x
> make "x :x+0.01
> ]
> 
> 
> Attached is a snapshot of the screen.
> 
> Best regards,
> Pavel
>

Hi Pavel!!!

I have a problem with your idea:

I'm using Elica 5.4 and I "copied and pasted" your procedure but I 
only get an error message:

"UNKNOWN VARIABLE OR COMMAND [SINGLEBUFFER]" ¿?

Another aditional question:

ElicaLogo and MSWLogo use a very good and real "human vision" 
perspective 3D mode. I really love this characteristic. But, maybe, 
it would be necessary to have another kind of 3D mode: the "non-
human vision" 3D. You known, something like some games (Sims, Age of 
Empires, etc). I don't like that way but, maybe, it would be useful 
to some kind of 3D geometry problems. Just an idea.

GOD BLESS YOU ALL!!!!!!!

Juan J. Paredes G.
From Curicó, Chile, South America, with love.

__._,_.___
LogoForum messages are archived at: 
http://groups.yahoo.com/group/LogoForum




 1 Posts in Topic:
Re: [LogoForum] Graphing Utility
"John St. Clair"  2008-01-11 04:56:18 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Mon May 12 3:49:10 CDT 2008.