File: wpc_intersect.hrl

package info (click to toggle)
wings3d 1.4.1-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 23,772 kB
  • sloc: erlang: 90,032; ansic: 1,437; makefile: 830; sh: 294; cpp: 123; objc: 112
file content (23 lines) | stat: -rw-r--r-- 478 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%%
%%  wpc_intersect.hrl --
%%
%%     Header file for wpc_intersection - defines the intersect_data record.
%%
%%  Copyright (c) 2003-2011 Bjorn Gustavsson.
%%
%%  See the file "license.terms" for information on usage and redistribution
%%  of this file, and for a DISCLAIMER OF ALL WARRANTIES.
%%
%%     $Id: wpc_intersection.erl,??
%%

-include_lib("wings.hrl").

% Intersect data
-record(intersect_data,
	{lineDir,
	 linePoint,
	 planeNorm,
	 planePoint,
	 lineDotPlane
	}).