LVecBase3d

I feel dumb for asking this, but how does one instantiate one of these.

Is it LVecBase3d name = new LVecBase3d(val1, val2, val3);

?

Probably:
LVecBase3d name = LVecBase3d(val1, val2, val3);

or
LVecBase3d name (val1, val2, val3);

You usually don’t need a pointer to those.

This is a question about a basic C++ concept. You might want to consider learning the basics about C++ before attempting to learn Panda3D.

Haha. Thanks I was just a bit rusty. Learning both at the same time isn’t too bad. Thanks.