Skip to content

File Field.h

File List > compo > Field.h

Go to the documentation of this file

#pragma once

#include "Transform.h"

enum FieldType
{
    NONE_FIELD, LINEAR_FIELD, SPHERE_FIELD, RADICAL_FIELD, RANDOM_FIRLD, BOX_FIELD
};

class Field : public Transform3D
{
public:
    FieldType fld_type = NONE_FIELD;
};