|
|
"Robert McGregor" <rob### [at] mcgregorfineartcom> wrote:
> Christian Froeschlin <chr### [at] chrfrde> wrote:
> > Explanation and Code as produced by ChatGPT:
> >
> >
> > "This script will create a red sphere that is reflective, and place it
> > over a checkerboard-patterned plane. The camera is positioned to look at
> > the sphere and plane, and a light source is added to illuminate the scene."
> >
>
> I was just watching a YouTube video about creating Blender scripts with this new
> tool ChatGPT, pretty amazing stuff it can do already - it was only released a
> week ago...
I just started playing around with this as a general exploration of the
capabilities of code generation in Chat GPT. I asked it for a rounded,
truncated cone. It got the truncated cone part, but missed the tori needed to
round the top and bottom edges.
I then asked it to use an isosurface instead of a cone. The isosurface function
it generated had something like this:
function {
float r = 0.5;
sqrt(x*x+z*z) - r
}
which is obviously not correct SDL syntax. I wonder where it picked that up?
-- Chris R.
Post a reply to this message
|
|