#include "common.h"
#include <stddef.h>
#include "vmath.h"
#include "bu/defines.h"
#include "bu/magic.h"
Go to the source code of this file.
|
#define | BU_HIST_NULL ((struct bu_hist *)0) |
|
#define | BU_CK_HIST(_p) BU_CKMAG(_p, BU_HIST_MAGIC, "struct bu_hist") |
|
#define | BU_HIST_INIT(_hp) |
|
#define | BU_HIST_INIT_ZERO {BU_HIST_MAGIC, 0.0, 0.0, 0.0, 0, 0, NULL} |
|
#define | BU_HIST_IS_INITIALIZED(_hp) (((struct bu_hist *)(_hp) != BU_HIST_NULL) && LIKELY((_hp)->magic == BU_HIST_MAGIC)) |
|
#define | BU_HIST_TALLY(_hp, _val) |
|
#define | BU_HIST_TALLY_MULTIPLE(_hp, _val, _count) |
|