0

Trying to add a double property to my Concept:

concept Location extends BaseConcept
....
  properties:
  longitude : double
  latitude : double

I know that properties is looking for PrimitiveDataTypeDeclaration, but I just find there integer, strings and boolean.

How can I add doubles?

Ghashange
  • 1,027
  • 1
  • 10
  • 20

1 Answers1

1

Use the _FPNumberString type to hold double values in properties

Vaclav Pech
  • 1,431
  • 8
  • 6