This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (vertexprimindex(0, @vtxnum) == primvertexcount(0, @primnum) - 1) i@group_root = 1; | |
if (vertexprimindex(0, @vtxnum) < 1) i@group_root = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get mirrored value from @curveu | |
float u = (abs(@curveu * - 2 + 1) * -1 + 1) / 2; | |
// Feed that value in a ramp that defines half of the resulting curve | |
f@pscale = chramp("point_scale", u); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float scale = chf('scale'); | |
matrix3 trn = primintrinsic(0, "transform", @primnum); | |
matrix scalem = maketransform(0, 0, {0,0,0}, {0,0,0}, scale, @P); | |
trn *= matrix3(scalem); | |
setprimintrinsic(0, "transform", @primnum, trn); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vector dir = chv('dir'); | |
float angle = dot(@N, dir); | |
float fitangle = fit(angle, -1, 1, 0, 1); | |
float blend = chramp('blend', fitangle); | |
@Cd = blend; | |
vector tmp = cross(@N, dir); | |
vector cross = cross(@N, tmp); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@rest = v@P; | |
int vtx = pointvertex(0, @ptnum); | |
vector uv = vertex(0, 'uv', vtx); | |
v@P = lerp(@P, uv, chf('blend')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vector cd = point(1, 'Cd', @ptnum); | |
v@P += normalize(v@N) * fit01(cd.r, -0.5, 0.5) * chf('scale'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
detail(0,"rotx",1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int pt = nearpoint(1,@P); | |
v@vel = point(1,'v',pt); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Cd = v@opinput1_Cd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
v@P += chf('scale') * v@N; |
NewerOlder