Post Reply 
Possibility of New Application?
02-07-2018, 01:00 PM
Post: #2
RE: Possibility of New Application?
You can implement that yourself. Create a new function, like:

Code:
EXPORT convertToPolarAndEvaluate(x,y)
BEGIN

// Convert 
LOCAL r:=sqrt(x*x+y*y);
LOCAL p:=ATAN(y/x);

// Evaluate
if(r==0) then return 1;
else
return SIN(6*r)/(6*r);
end;
END;


Then use that function for the 3d app:
[Image: zqJ8Xl9.jpg]

My website: erwin.ried.cl
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Possibility of New Application? - math7 - 02-07-2018, 08:28 AM
RE: Possibility of New Application? - eried - 02-07-2018 01:00 PM



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