BRL-CAD
|
#include "common.h"
#include <limits.h>
#include <math.h>
#include <string.h>
#include "bio.h"
#include "vmath.h"
#include "raytrace.h"
Go to the source code of this file.
Functions | |
void | db_full_path_init (struct db_full_path *pathp) |
void | db_add_node_to_full_path (struct db_full_path *pp, struct directory *dp) |
void | db_dup_full_path (struct db_full_path *newp, const struct db_full_path *oldp) |
void | db_extend_full_path (struct db_full_path *pathp, size_t incr) |
void | db_append_full_path (struct db_full_path *dest, const struct db_full_path *src) |
void | db_dup_path_tail (struct db_full_path *newp, const struct db_full_path *oldp, off_t start) |
char * | db_path_to_string (const struct db_full_path *pp) |
void | db_path_to_vls (struct bu_vls *str, const struct db_full_path *pp) |
void | db_fullpath_to_vls (struct bu_vls *vls, const struct db_full_path *full_path, const struct db_i *dbip, int fp_flags) |
void | db_pr_full_path (const char *msg, const struct db_full_path *pathp) |
int | db_string_to_path (struct db_full_path *pp, const struct db_i *dbip, const char *str) |
int | db_argv_to_path (struct db_full_path *pp, struct db_i *dbip, int argc, const char *const *argv) |
void | db_free_full_path (struct db_full_path *pp) |
int | db_identical_full_paths (const struct db_full_path *a, const struct db_full_path *b) |
int | db_full_path_subset (const struct db_full_path *a, const struct db_full_path *b, const int skip_first) |
int | db_full_path_match_top (const struct db_full_path *a, const struct db_full_path *b) |
int | db_full_path_search (const struct db_full_path *a, const struct directory *dp) |
int | cyclic_path (const struct db_full_path *fp, const char *name) |
int | db_path_to_mat (struct db_i *dbip, struct db_full_path *pathp, mat_t mat, int depth, struct resource *resp) |
Routines to manipulate "db_full_path" structures
Definition in file db_fullpath.c.