Post Reply 
New Casio fx-9860 GIII model
03-04-2020, 11:56 PM (This post was last modified: 03-05-2020 05:58 PM by toml_12953.)
Post: #11
RE: New Casio fx-9860 GIII model
(02-01-2020 09:26 PM)Eddie W. Shore Wrote:  I am hoping that:

1. Python will become available for the fx-9860gII as well and

2. The next Python update for both the fx-9860gIII and fx-CG 50 will include at least graphics, statistics, and the ability to define user functions. Currently the fx-CG 50's Python mode is stripped down.

Now that the gIII has been officially announced we can see that there's no support for a graphics library yet. Sad We can always hope, though. In the mean time, I use Numworks which has a pretty nice Kandinsky library although it has no support for drawing lines:

Code:
from math import *
from time import *
from kandinsky import *
def hat():
  t0 = monotonic()
  fill_rect(0,0,320,240,(0,0,0))
  p=160; q=90
  xp=144; xr=1.5*3.1415927
  yp=56; yr=1; zp=64
  xf=xr/xp; yf=yp/yr; zf=xr/zp
  for zi in range(-q,q):
    if zi>=-zp and zi<=zp:
      zt=zi*xp/zp; zz=zi
      xl=int(.5+sqrt(xp*xp-zt*zt))
      for xi in range(-xl,xl+1):
        xt=sqrt(xi*xi+zt*zt)*xf; xx=xi
        yy=(sin(xt)+.4*sin(3*xt))*yf
        x1=int(xx+zz+p)
        y1=200-int(yy-zz+q)
        set_pixel(x1,y1,(0,255,0))
        if y1!=0:
          fill_rect(x1,y1+1,1,240-y1,(0,0,0))
  print(monotonic() - t0,"seconds")

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
New Casio fx-9860 GIII model - Coco - 01-09-2020, 04:34 PM
RE: New Casio fx-9860 GIII model - Hlib - 01-09-2020, 08:02 PM
RE: New Casio fx-9860 GIII model - Coco - 02-02-2020, 04:15 PM
RE: New Casio fx-9860 GIII model - toml_12953 - 03-04-2020 11:56 PM
RE: New Casio fx-9860 GIII model - lrdheat - 03-06-2020, 03:22 PM
RE: New Casio fx-9860 GIII model - Dands - 03-08-2020, 04:07 AM
RE: New Casio fx-9860 GIII model - klesl - 03-08-2020, 12:25 PM
RE: New Casio fx-9860 GIII model - lrdheat - 03-10-2020, 05:51 PM
RE: New Casio fx-9860 GIII model - klesl - 05-14-2020, 04:30 PM
RE: New Casio fx-9860 GIII model - lrdheat - 10-04-2020, 11:34 PM
RE: New Casio fx-9860 GIII model - pier4r - 10-06-2020, 08:26 PM
RE: New Casio fx-9860 GIII model - vaklaff - 10-11-2020, 06:29 PM
RE: New Casio fx-9860 GIII model - lrdheat - 10-15-2020, 03:43 PM
RE: New Casio fx-9860 GIII model - lrdheat - 10-18-2020, 11:26 PM
RE: New Casio fx-9860 GIII model - Druzyek - 10-21-2020, 12:47 AM
RE: New Casio fx-9860 GIII model - DiTBho - 01-01-2021, 01:25 PM
RE: New Casio fx-9860 GIII model - critor - 01-01-2021, 08:37 PM
RE: New Casio fx-9860 GIII model - robve - 01-16-2022, 03:30 PM
RE: New Casio fx-9860 GIII model - critor - 01-19-2022, 08:36 PM
RE: New Casio fx-9860 GIII model - robve - 01-21-2022, 03:28 PM



User(s) browsing this thread: 1 Guest(s)