Problem with Point3

I have a weird problem with LPoint3f.

It comes with this message:

from pandac.PandaModules import LPoint3f
ImportError: cannot import name LPoint3f

And my code is as simple as that…

import direct.directbase.DirectStart

from pandac.PandaModules import LPoint3f
run()
I want to add a list with positions of an object and I want to use Point3 type.

Is it something that I forget?

:confused:

Actually, in Python, the class is called Point3, sorry for the confusion.

from pandac.PandaModules import Point3

The double-precision equivalent is Point3D.