Graphviz 12.0.1~dev.20240716.0800
Loading...
Searching...
No Matches
draw.h
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#pragma once
12
13#include "smyrnadefs.h"
14#include <gtk/gtkgl.h>
15#include <xdot/xdot.h>
16#include <stdlib.h>
17#include <string.h>
18#include <math.h>
19#include <glcomp/glcompfont.h>
20
21/* DRAWING FUNCTIONS
22 * these are opengl based xdot drawing functions
23 * topview drawings are not here
24 */
25extern drawfunc_t OpFns[];
26extern void drawCircle(float x, float y, float radius, float zdepth);
27extern void drawBorders(ViewInfo * view);
28extern void draw_selpoly(glCompPoly* selPoly);
void drawCircle(float x, float y, float radius, float zdepth)
Definition draw.c:387
drawfunc_t OpFns[]
Definition draw.c:403
void drawBorders(ViewInfo *view)
Definition draw.c:370
void draw_selpoly(glCompPoly *selPoly)
Definition draw.c:416
ViewInfo * view
Definition viewport.c:38
parsing and deparsing of xdot operations
void(* drawfunc_t)(xdot_op *, int)
Definition xdot.h:132