diff options
Diffstat (limited to 'pipermail/nel/2001-December/000831.html')
-rw-r--r-- | pipermail/nel/2001-December/000831.html | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/pipermail/nel/2001-December/000831.html b/pipermail/nel/2001-December/000831.html new file mode 100644 index 00000000..9547d5c3 --- /dev/null +++ b/pipermail/nel/2001-December/000831.html @@ -0,0 +1,141 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Nel] Landscapes without 3DSMax + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:corvazier%40nevrax.com"> + <META NAME="robots" CONTENT="index,nofollow"> + + <LINK REL="Previous" HREF="000829.html"> + <LINK REL="Next" HREF="000830.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Nel] Landscapes without 3DSMax + </H1> + <B>Cyril 'Hulud' Corvazier + </B> + <A HREF="mailto:corvazier%40nevrax.com" + TITLE="[Nel] Landscapes without 3DSMax">corvazier@nevrax.com + </A><BR> + <I>Wed, 19 Dec 2001 18:21:17 +0100</I> + <P><UL> + <LI> Previous message: <A HREF="000829.html">[Nel] Landscapes without 3DSMax +</A></li> + <LI> Next message: <A HREF="000830.html">[Nel] Re: Nel digest, Vol 1 #207 - 4 msgs +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#831">[ date ]</a> + <a href="thread.html#831">[ thread ]</a> + <a href="subject.html#831">[ subject ]</a> + <a href="author.html#831">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Hi Paul, + +Forget all the ASCII parts of the 2 previous mail, here is the good way to +fill the CPatchInfo::CBindInfo structure : + +--- + +We will assume all patches in this example are oriented like this + +0 3 + *** + * * + *** +1 2 + +--- + +The edge numbers are : + + 3 + *** + 0 * * 2 + *** + 1 + + --- + + There is 3 ways to bind patches together. (1-1, 1-2, 1-4) + + --- + + One patch on another : + + ********** + * * * + * 0 * 1 * + * * * + ********** + CBindInfo: + Patch 0, edge 2 : NPatchs = 1, Next = { Patch 1 }, Edge = { 0 } + Patch 1, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + + --- + + Two patches on another (Bind 2) + + ********** + * * 2 * + * 0 ****** + * * 1 * + ********** + Bind info: + Patch 0, edge 2 : NPatchs = 2, Next = { Patch 1, Patch 2 }, Edge = { 0, +0 } + Patch 1, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + Patch 2, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + + --- + + 4 patches on another (Bind 4) + + ********** + * * 4 * + * ****** + * * 3 * + * 0 ****** + * * 2 * + * ****** + * * 1 * + ********** + Patch 0, edge 2 : NPatchs = 4, Next = { Patch 1, Patch 2, Patch 3, Patch +4 }, Edge = { 0, 0, 0, 0 } + Patch 1, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + Patch 2, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + Patch 3, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + Patch 4, edge 0 : NPatchs = 1, Next = { Patch 0 }, Edge = { 2 } + + --- + +Sorry but i have been confused by the two classes called CPatch::CBindInfo +and CPatchInfo::CBindInfo. :-) + +Cyril Corvazier. + + + + +</pre> + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI> Previous message: <A HREF="000829.html">[Nel] Landscapes without 3DSMax +</A></li> + <LI> Next message: <A HREF="000830.html">[Nel] Re: Nel digest, Vol 1 #207 - 4 msgs +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#831">[ date ]</a> + <a href="thread.html#831">[ thread ]</a> + <a href="subject.html#831">[ subject ]</a> + <a href="author.html#831">[ author ]</a> + </LI> + </UL> +</body></html> |