User contributions

Jump to: navigation, search
Search for contributions
 
 
     
 
   

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 19:56, 24 April 2017 (diff | hist) . . (+542). . N ReturnNVectorCOG(Created page with " global proc vector ReturnNVectorCOG(vector $AllVecs[]) { //Author Nick Pisca 0001d 2010 //$AllVecs[0]=<<0,0,0>>;$AllVecs[1]=<<1,-1,0>>;$AllVecs[2]=<<1,0,0>>;$AllVecs[3]=<...") (current)
  • 19:56, 24 April 2017 (diff | hist) . . (+290). . N ReturnMidPtCoord(Created page with " Function ReturnMidPtCoord(X1 As Double, Y1 As Double, Z1 As Double, X2 As Double, Y2 As Double, Z2 As Double) As Variant Dim FinalPt(2) FinalPt(0) = (X1 + X2) / 2 FinalPt(...") (current)
  • 19:56, 24 April 2017 (diff | hist) . . (+534). . N ReturnMidCurveDist(Created page with " Function ReturnMidCurveDist(CurveObj As Variant) As Double If IsUpdatable(CurveObj) Then Dim TMeas Set TMeas = TheSPAWorkbench.GetMeasurable(CurveObj) Dim TC(...") (current)
  • 19:55, 24 April 2017 (diff | hist) . . (+1,256). . N ReturnFaceCentroid(Created page with " global proc vector ReturnFaceCentroid(string $ObjName, int $FaceNum) { //Author Nick Pisca 0001d 2008 //string $ObjName = "pTorus1"; //string $FaceNum = 30; string $Cu...") (current)
  • 19:55, 24 April 2017 (diff | hist) . . (+2,124). . N ReturnDarkestPath MEL(Created page with " global proc string ReturnDarkestPath(float $U, float $V, float $Rad, int $FanNum, string $SkipStr[], float $SkipRad) { //0001D LLC 2015 Nick Pisca //float $U = 0.896; flo...") (current)
  • 19:55, 24 April 2017 (diff | hist) . . (+367). . N ReturnCOG(Created page with " global proc vector ReturnCOG(vector $V1, vector $V2, vector $V3) { //Author Nick Pisca 0001d 2010 //$V1 = <<0,0,0>>; $V2 = <<1,-1,0>>; $V3 = <<1,0,0>> vector $TempVe...") (current)
  • 19:54, 24 April 2017 (diff | hist) . . (+500). . N ReturnCAValueAS(Created page with " function ReturnCAValue(InputStr) { // ----- Input The Cellular Automata Values HERE: ----- // Main1 = new Array(111, 110, 101, 100, 11, 10, 1, 0); Main2...") (current)
  • 19:54, 24 April 2017 (diff | hist) . . (+614). . N ReturnCAValue(Created page with " global proc int ReturnCAValue(string $InputStr) { // ----- Input The Cellular Automata Values HERE: ----- // int $Main1[7] = {111, 110, 101, 100, 11, 10,...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+951). . N ReturnAverageRGBThruPath MEL(Created page with " global proc float ReturnAverageRGBThruPath(float $U1, float $V1, float $U2, float $V2, int $Interval, string $FileName) { //0001D LLC 2015 Nick Pisca //float $U1 = 0.896;...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+863). . N ReturnAllObjectsWithinDist(Created page with " Function ReturnAllObjectsWithinDist(CurObj As Variant, ObjSet As HybridBody, WithinDist As Double) As Variant Dim tempArr() ReDim tempArr(0) If IsUpdatable(CurObj) = F...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+316). . N Replacing Text in Batch Syntax(Created page with "You may want to replace a portion of a string with a another string. This article may help you in this process. setLocal EnableDelayedExpansion set /p Var4=<trap.txt For...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+284). . N RenderWithName(Created page with " global proc RenderWithName(string $CamName, string $ImageName) { setAttr defaultRenderGlobals.imageFilePrefix -type "string" $ImageName; render $CamName; } ''More info...") (current)
  • 19:52, 24 April 2017 (diff | hist) . . (+231). . N Rename by Selection(Created page with " string $troops[] = `ls-sl`; for ( $jj = 0; $jj< size($troops) ; $jj++) { rename $troops[$jj] aab2N; } ''More information on strings and naming, read pages 28-37 in [htt...") (current)
  • 19:52, 24 April 2017 (diff | hist) . . (+390). . N RemoveVectorArrayElement(Created page with " global proc vector[] RemoveVectorArrayElement(vector $CurArr[],int $RemoveIndex) { vector $PR[]; int $PRCounter = 0; for ($p=0;$p<size($CurArr);$p++) { if ($p!=$Remo...") (current)
  • 19:52, 24 April 2017 (diff | hist) . . (+385). . N RemoveStringArrayElement(Created page with " global proc string[] RemoveStringArrayElement(string $CurArr[],int $RemoveIndex) { string $PR[]; int $PRCounter = 0; for ($p=0;$p<size($CurArr);$p++) { if ($p!=$Remo...") (current)
  • 19:51, 24 April 2017 (diff | hist) . . (+278). . N RemoveChars(Created page with " Function RemoveChars(InputStr As String, ArrayOfChars As Variant) As String Dim tempStr As String tempStr = InputStr For X = 0 To UBound(ArrayOfChars) tempStr = Repla...") (current)
  • 19:51, 24 April 2017 (diff | hist) . . (+501). . N Recursion(Created page with " <div align="right">Back to Academic_Archives.</div> __TOC__ ===In Progress=== ===Important Links=== [http://www.idi.ntnu.no/~fredrior/files/Catmull-Clark%201978%20Re...") (current)
  • 19:51, 24 April 2017 (diff | hist) . . (+930). . N RealTokenize MEL(Created page with "''Just a note, the MEL tokenize will split up a string, but it will '''not''' remember empty strings. Empty strings are ignored. My "RealTokenize" subroutine will split any...") (current)
  • 19:50, 24 April 2017 (diff | hist) . . (+1,624). . N Rationalization(Created page with "<div align="right">Back to Academic_Archives.</div> __TOC__ === In Progress === === Pertinent Links === * [http://ocw.mit.edu/NR/rdonlyres/Architecture/4-510Fall-2005...") (current)
  • 19:50, 24 April 2017 (diff | hist) . . (+83). . N Randomize-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/08/randomize.zip Category:MEL") (current)
  • 19:50, 24 April 2017 (diff | hist) . . (+514). . N RandomMoveArrayOfObjectsinXY(Created page with " global proc RandomMoveArrayOfObjectsinXY(string $NameList[], float $MaxVal) { //Author Nick Pisca 0001d 2009 for ($x=0;$x<size($NameList);$x++) { if (`objExists...") (current)
  • 19:49, 24 April 2017 (diff | hist) . . (+551). . N RandomMoveArrayOfObjects(Created page with " global proc RandomMoveArrayOfObjects(string $NameList[], float $MaxVal) { //Author Nick Pisca 0001d 2008 for ($x=0;$x<size($NameList);$x++) { if (`objExists $NameList[$...") (current)
  • 19:49, 24 April 2017 (diff | hist) . . (+79). . N RanPos+RanSize-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/08/ranps.zip Category:MEL") (current)
  • 19:49, 24 April 2017 (diff | hist) . . (+188). . N RanColor-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/06/rancolor.zip ''More information on applying shaders, read pages 128-133 in [http://stores.lulu.com/nickpisca YSYT]. C...") (current)
  • 19:48, 24 April 2017 (diff | hist) . . (+182). . N RanCluster-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/06/rancluster.zip ''More information on primitives, read pages 43-54 in [http://stores.lulu.com/nickpisca YSYT]. Categor...") (current)
  • 19:48, 24 April 2017 (diff | hist) . . (+199). . N RampShaderRandStripes-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/01/ramprandstirpes.zip ''More information on working with spheres, read pages 128-133 in [http://stores.lulu.com/nickpisca Y...") (current)
  • 19:48, 24 April 2017 (diff | hist) . . (+302). . N RVB RandOrthVector(Created page with " Public Function RandOrthVector(BasePtArr, MaxRange) Dim XV, YV, ZV, EndArr XV = ((Rnd()*2)-1)*MaxRange + BasePtArr(0) YV = ((Rnd()*2)-1)*MaxRange + BasePtArr(1) ZV = ((Rn...") (current)
  • 19:47, 24 April 2017 (diff | hist) . . (+183). . N RVB LinCong(Created page with " Public Function LinCong() Dim OT, ConstB, ConstM ConstB = 4.1 ConstM = 100 OT = ((RValue*ConstB)+1) Mod ConstM RValue = OT LinCong = OT End Function Category:Rhino...") (current)
  • 19:47, 24 April 2017 (diff | hist) . . (+125). . N Query Current Frame(Created page with " if (_currentframe < 6) { var transVal = (_currentframe)*20; myImageHolder._alpha = transVal; } Category:ActionScript") (current)
  • 19:46, 24 April 2017 (diff | hist) . . (+21,238). . N QHull to Maya Integration-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:qmel.mel // ===================================================================== // Qhull - Maya interoperabilit...") (current)
  • 19:42, 24 April 2017 (diff | hist) . . (+308). . N PrintArrayInLine(Created page with " global proc PrintArrayInLine(string $InputArr[]) { //Author: Nick Pisca 2010 0001d for ($x=0;$x<size($InputArr);$x++) { print ($InputArr[$x] + ", "); } print ("\n"...") (current)
  • 19:41, 24 April 2017 (diff | hist) . . (+1,060). . N Preloader with String Notifications(Created page with " onClipEvent (enterFrame) { var bytes = _root.getBytesTotal(); var bytes_loaded = _root.getBytesLoaded(); pct = Math.round((bytes_loaded/bytes)*100); //in...") (current)
  • 19:41, 24 April 2017 (diff | hist) . . (+566). . N PlacePointOnCurve(Created page with " Function PlacePointOnCurve(CurLine As Variant, StartPt As Variant, CurDist As String, CurSet As HybridBody, CurName As String) As HybridShapePointOnCurve Dim CC As HybridS...") (current)
  • 19:41, 24 April 2017 (diff | hist) . . (+427). . N PlaceLocatorOnPlane MEL(Created page with " global proc string[] PlaceLocatorOnPlane(float $xR, float $yR, string $PlaneName) { //0001D LLC 2015 Nick Pisca vector $xyz = `pointPosition ($PlaneName + ".uv["+($xR)+"]...") (current)
  • 19:40, 24 April 2017 (diff | hist) . . (+659). . N PlaceLineOnPlane MEL(Created page with " global proc string PlaceLineOnPlane(float $x1, float $y1, float $x2, float $y2, string $PlaneName, string $NameStr) { //0001D LLC 2015 Nick Pisca vector $xyz1 = `pointPos...") (current)
  • 19:40, 24 April 2017 (diff | hist) . . (+2,173). . N PlaceImageAndMaterialOnObject(Created page with " string $ImagePath = "C:/Documents and Settings/Nick/My Documents/My Pictures/Image1.jpg"; string $TTArr[1] = PlaceImageAndMaterialOnObject("NP1", "blinn", $ImagePath, "Phon"...") (current)
  • 19:39, 24 April 2017 (diff | hist) . . (+312). . N ParameterFromSubName(Created page with " Function ParameterFromSubName(NameStr As String, ParmsList As Parameters) As Parameter For X = 1 To ParmsList.Count If InStr(ParmsList.Item(X).Name, NameStr) <> 0 Then...") (current)
  • 19:39, 24 April 2017 (diff | hist) . . (+1,331). . N Outside Resources(Created page with "__TOC__ ===Kokkugia=== * [http://www.kokkugia.com/wiki/index.php?title=Main_Page Roland Snooks] [http://www.kokkugia.com/wiki/index.php5?title=KAgent Processing Scripts] =...") (current)
  • 19:39, 24 April 2017 (diff | hist) . . (+3,947). . N OrientObjTwoSurfaces-ctrl-i(Created page with "Direct: http://crtl-i.com/blog/?p=115 Option Explicit ‘by Andrew Kudless | andrew@materialsystems.org | april, 2005 ‘Edited by Howard Jiho Kim | kimjiho@gmail.com |...") (current)
  • 19:38, 24 April 2017 (diff | hist) . . (+573). . N OffMidVector(Created page with " global proc vector OffMidVector(vector $v1, vector $v2, float $RandRange) { //Author Nick Pisca 0001d 2008 vector $MidVec = <<((($v1.x)+($v2.x))/2),((($v1.y)+($v2.y...") (current)
  • 19:37, 24 April 2017 (diff | hist) . . (+8). . N Nptest(Created page with "nptest 2") (current)
  • 19:37, 24 April 2017 (diff | hist) . . (+255). . N Naming Sub-Ds(Created page with " //Author Nick Pisca 0001d 2008 CreateSubdivSphere; string $tempSel[] = `ls-sl`; rename $tempSel[0] "SUBD1"; ''More information of Sub-D naming and manipulation, read pag...") (current)
  • 19:37, 24 April 2017 (diff | hist) . . (+121). . N Naming Soft Bodies(Created page with " //Author Nick Pisca 0001d 2008 string $CSoft[] = `soft -c nurbsTorus1`; rename $CSoft[0] ReplName1; Category:MEL") (current)
  • 19:36, 24 April 2017 (diff | hist) . . (+776). . N MultiRotate(Created page with " Function MultiRotate(Obj1 As Variant, RotCount As Integer, RotAngle As Double, CurSet As HybridBody, NameStr As String) As Variant Dim RotArr() ReDim RotArr(RotCount - 1)...") (current)
  • 19:36, 24 April 2017 (diff | hist) . . (+176). . N Editing Move MC Opposite to Mouse Direction(Created page with " onClipEvent (mouseMove) { xvar = (-1.8)*_root._xmouse + 1350; yvar = (-1.6)*_root._ymouse + 850; this._y = yvar; this._x = xvar; } Category:ActionScript") (current)
  • 19:36, 24 April 2017 (diff | hist) . . (+723). . N MovePointOnCurveCloserToObj(Created page with " Sub MovePointOnCurveCloserToObj(CurvePt As HybridShapePointOnCurve, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePt.Orientation Dim OppOri As Boolean OppOri...") (current)
  • 19:35, 24 April 2017 (diff | hist) . . (+721). . N MovePlaneOffsetCloserToObj(Created page with " Sub MovePlaneOffsetCloserToObj(CurvePL As HybridShapePlaneOffset, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePL.Orientation Dim OppOri As Boolean OppOri =...") (current)
  • 19:35, 24 April 2017 (diff | hist) . . (+754). . N MoveOffsetCloserToObj(Created page with " Sub MoveOffsetCloserToObj(OffsetSurf As HybridShapeOffset, CompareObj As Variant) Dim CurOri As Boolean CurOri = OffsetSurf.OffsetDirection '.InvertDirection Dim OppO...") (current)
  • 19:35, 24 April 2017 (diff | hist) . . (+892). . N MoveOffsetCloserToCoord(Created page with " Sub MoveOffsetCloserToCoord(CurvePar As HybridShapeOffset, XVal As Double, YVal As Double, ZVal As Double) MyPart.UpdateObject CurvePar Dim CMeas Set CMeas = TheSPAWorkben...") (current)
  • 19:34, 24 April 2017 (diff | hist) . . (+987). . N MoveLineTangencyCloserToCoord(Created page with " Sub MoveLineTangencyCloserToCoord(CurvePar As HybridShapeLineTangency, XVal As Double, YVal As Double, ZVal As Double) Dim CurOri Dim OppOri CurOri = CurvePar.Orientation...") (current)
  • 19:34, 24 April 2017 (diff | hist) . . (+716). . N MoveLinePtDirCloserToObj(Created page with " Sub MoveLinePtDirCloserToObj(CurvePt As HybridShapeLinePtDir, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePt.Orientation Dim OppOri As Boolean OppOri = Not...") (current)
  • 19:34, 24 April 2017 (diff | hist) . . (+742). . N MoveLineAngleCloserToObjByNegAngle(Created page with " Sub MoveLineAngleCloserToObjByNegAngle(CurvePt As HybridShapeLineAngle, CompareObj As Variant) Dim CurOri As Double CurOri = CurvePt.Angle.Value Dim OppOri As Double OppO...") (current)
  • 19:33, 24 April 2017 (diff | hist) . . (+718). . N MoveLineAngleCloserToObj(Created page with " Sub MoveLineAngleCloserToObj(CurvePt As HybridShapeLineAngle, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePt.Orientation Dim OppOri As Boolean OppOri = Not...") (current)
  • 19:33, 24 April 2017 (diff | hist) . . (+965). . N MoveLineAngleCloserToCoord(Created page with " Sub MoveLineAngleCloserToCoord(CurvePar As HybridShapeLineAngle, XVal As Double, YVal As Double, ZVal As Double) MyPart.UpdateObject CurvePar Dim CMeas Set CMeas = TheSPAW...") (current)
  • 19:33, 24 April 2017 (diff | hist) . . (+885). . N MoveExtrudeCloserToCoord(Created page with " Sub MoveExtrudeCloserToCoord(CurvePar As HybridShapeExtrude, XVal As Double, YVal As Double, ZVal As Double) MyPart.UpdateObject CurvePar Dim CMeas Set CMeas = TheSPAWorkb...") (current)
  • 19:33, 24 April 2017 (diff | hist) . . (+657). . N MoveExtremumCloserToObj(Created page with " Sub MoveExtremumCloserToObj(CurExtremum As HybridShapeExtremum, CompareObj As Variant) MyPart.UpdateObject CurExtremum MyPart.UpdateObject CompareObj Dim CMeas Set CMeas...") (current)
  • 19:32, 24 April 2017 (diff | hist) . . (+739). . N MoveCurveParCloserToObj(Created page with " Sub MoveCurveParCloserToObj(CurvePar As HybridShapeCurvePar, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePar.InvertDirection Dim OppOri As Boolean OppOri =...") (current)
  • 19:32, 24 April 2017 (diff | hist) . . (+856). . N MoveCurveParCloserToCoord(Created page with " Sub MoveCurveParCloserToCoord(CurvePar As HybridShapeCurvePar, XVal As Double, YVal As Double, ZVal As Double) MyPart.UpdateObject CurvePar Dim CMeas Set CMeas = TheSPAWor...") (current)
  • 19:32, 24 April 2017 (diff | hist) . . (+714). . N MoveCircle2PointsRadCloserToObj(Created page with " Sub MoveCircle2PointsRadCloserToObj(CurveCirc As HybridShapeCircle2PointsRad, CompareObj As Variant) MyPart.UpdateObject CurveCirc MyPart.UpdateObject CompareObj Dim CMea...") (current)
  • 19:31, 24 April 2017 (diff | hist) . . (+1,134). . N MoveAxisSystemXDirFartherFromCoord(Created page with " Sub MoveAxisSystemXDirFartherFromCoord(CurvePar As AxisSystem, ResultObj As Variant, XVal As Double, YVal As Double, ZVal As Double) If IsUpdatable(CurvePar) And IsUpd...") (current)
  • 07:32, 22 April 2017 (diff | hist) . . (-212). . Main Page
  • 07:31, 22 April 2017 (diff | hist) . . (+29). . N Category:CSharp(Created page with "These are the 0001D C# codes.") (current)
  • 07:31, 22 April 2017 (diff | hist) . . (+863). . N Category:Revit VB.NET(Created page with "'''Revit Scripting Library (VB.NET)'''<br> <font size="-2">Open Sorcerers: [http://www.nickpisca.com Nick Pisca 0001d] </font> [http://thebuildingcoder.typepad.com/blog/2009...") (current)
  • 07:31, 22 April 2017 (diff | hist) . . (+474). . N Category:Revit Journal(Created page with "'''Revit Journal File Repository'''<br> <font size="-2" color="red">Revit Journal Files are undocumented and buggy text files that can be used to automate commands in Autodesk...") (current)
  • 07:30, 22 April 2017 (diff | hist) . . (+216). . N Category:Batch Files(Created page with "'''Batch BAT Scripting Library'''<br> <font size="-2">Open Sorcerers: [http://www.nickpisca.com Nick Pisca 0001d] </font> <font size="-2">''Keywords: Windows, Batch, B...") (current)
  • 07:30, 22 April 2017 (diff | hist) . . (+536). . N Category:Python(Created page with "Reader Note: Python is available in Maya, but I recommend that newcomers to scripting learn MEL. * [http://www.kxcad.net/autodesk/maya/Maya_Documentation/wwhelp/wwhimpl/c...") (current)
  • 07:30, 22 April 2017 (diff | hist) . . (+110). . N Category:AutoCAD VB(Created page with "'''AutoCAD VB Library''' <font size="-2">Open Sorcerers: [http://www.nickpisca.com Nick Pisca 0001d] </font>") (current)
  • 07:29, 22 April 2017 (diff | hist) . . (+112). . N Category:ActionScript(Created page with "'''ActionScript Library''' <font size="-2">Open Sorcerers: [http://www.nickpisca.com Nick Pisca 0001d] </font>") (current)
  • 07:29, 22 April 2017 (diff | hist) . . (+1,045). . N Category:RhinoScript(Created page with "'''RhinoScript Library'''<br> <font size="-2">Open Sorcerers: [http://www.nickpisca.com Nick Pisca 0001d], [http://www.kokkugia.com Kokkugia], [http://www.materialsystems.org...") (current)
  • 07:28, 22 April 2017 (diff | hist) . . (+463). . N Category:CATIA DP VB(Created page with "'''CATIA and Digital Project Visual Basic Library''' Visit my work at the GTWiki regarding [http://www.gtwiki.org/mwiki/index.php?title=Category:Automation_Functions Automatio...")
  • 07:28, 22 April 2017 (diff | hist) . . (+800). . N Category talk:CATIA DP VB(Created page with "Hello, I'm a little bit concerned by using actions, reactions, knowledge paterns, ... the source code is duplicated in all CATParts that uses these objects. If this code no lo...") (current)
  • 07:27, 22 April 2017 (diff | hist) . . (+2,891). . N Category:MEL(Created page with "'''Maya MEL Scripting Library'''<br> <font size="-2">Open Sorcerers: [http://www.nickpisca.com Nick Pisca 0001d], [http://www.kokkugia.com Kokkugia], [http://researchnodes.or...") (current)
  • 07:23, 22 April 2017 (diff | hist) . . (+992). . N MoveArcWallCloserToCoordByInverse(Created page with " Sub MoveArcWallCloserToCoordByInverse(AWall As ArcWall, TInverse As HybridShapeInverse, XVal As Double, YVal As Double, ZVal As Double) If IsUpdatable(AWall) = False O...") (current)
  • 07:23, 22 April 2017 (diff | hist) . . (+1,290). . N MoveArcSlabCloserToObjByInverse(Created page with " Sub MoveArcSlabCloserToObjByInverse(ASlab As ArcSlab, TInverse As HybridShapeInverse, CompareObj As Variant, ConstSet As HybridBody) If IsUpdatable(ASlab) = False Or IsU...") (current)
  • 07:23, 22 April 2017 (diff | hist) . . (+1,172). . N Mesh to NURBS Converter(Created page with " string $Objs[] = `ls-sl`; //Author Nick Pisca 0001d 2007 int $Objscount = size($Objs); if($Objscount == 0) { warning "Nothing Selected. Select some Polygons and try re-...") (current)
  • 07:22, 22 April 2017 (diff | hist) . . (+2,129). . N MergeFaces(Created page with " global proc float MergeFaces(string $Obj1, string $FaceNum1, string $Obj2, string $FaceNum2) { //Author Nick Pisca 0001d 2008 /*string $Obj1 = "pTorus1"; string $...") (current)
  • 07:22, 22 April 2017 (diff | hist) . . (+979). . N MatchBlendOrientationsWithEndPts(Created page with " Sub MatchBlendOrientations(InputBlend As HybridShapeBlend) Dim Curve1 Set Curve1 = MyHSFactory.GSMGetObjectFromReference(InputBlend.GetCurve(1)) Dim Curve2 Set Curve2 = M...") (current)
  • 07:22, 22 April 2017 (diff | hist) . . (+4,371). . N MakeTree Revision-ssss(Created page with "Direct: http://ssssociety.blogspot.com/2008/09/maketree-revision.html Option Explicit 'Author: YukiukiH 'Date: 08/10/03 'compatibility: Rhino4 'branching using vector...") (current)
  • 07:21, 22 April 2017 (diff | hist) . . (+655). . N MakeTangentLineAtPt(Created page with " Sub MakeTangentLineAtPt(InputCrv As Variant, EndPt As Variant, DestSet As HybridBody) Dim TangLine As HybridShapeLineTangency Set TangLine = MyHSFactory.AddNewLineTangency(...") (current)
  • 07:21, 22 April 2017 (diff | hist) . . (+1,489). . N MakeExtrudedQuad MEL(Created page with " global proc string[] MakeExtrudedQuad(vector $Vec1, vector $Vec2, vector $Vec3, vector $Vec4, float $RadVal) { //Nick Pisca 0001d 2011 //vector $Vec1 = <<0,2,3>>; vector...") (current)
  • 07:21, 22 April 2017 (diff | hist) . . (+6,061). . N MakeBridge Revision-ssss(Created page with "Direct: http://ssssociety.blogspot.com/2008/09/makebridge-revision.html Option Explicit 'Author: YukiukiH 'Date: 08/10/03 'compatibility: Rhino4 'draw normal at each d...") (current)
  • 07:21, 22 April 2017 (diff | hist) . . (+4,295). . N MakeBranch Revision-ssss(Created page with "Direct: http://ssssociety.blogspot.com/2008/09/makebranch-revision.html Option Explicit 'Author: YukiukiH 'Date: 08/10/03 'compatibility: Rhino4 'branching using vecto...") (current)
  • 07:20, 22 April 2017 (diff | hist) . . (+352). . N MakeArrayMidDoubles(Created page with " Function MakeArrayMidDoubles(InputArr As Variant) As Variant Dim MidArr() ReDim MidArr(UBound(InputArr) - 1) For X = 0 To UBound(InputArr) - 1 Dim FVal FVal = In...") (current)
  • 07:20, 22 April 2017 (diff | hist) . . (+396). . N MakeArrayFromSearch(Created page with " Function MakeArrayFromSearch(SearchStr As String) As Variant MySel.Search SearchStr Dim TempArr() If MySel.Count = 0 Then ReDim TempArr(0) MakeArrayFromSearch =...") (current)
  • 07:20, 22 April 2017 (diff | hist) . . (+639). . N MakeArrayFromExcelColumn(Created page with " Function MakeArrayFromExcelColumn(ColumnNo As Integer, TotalRows As Integer) As Variant Dim CurArr() ReDim CurArr(1) CurArr(0) = "" For MK = 2 To TotalRows Dim Cur...") (current)
  • 07:19, 22 April 2017 (diff | hist) . . (+45). . N MEL TEST1(Created page with "{{:Category:In-House MEL}} {{:Category:MEL}}") (current)
  • 07:18, 22 April 2017 (diff | hist) . . (+1,079). . N MEL ClosestPointOnCurve(Created page with "Best link ever.... http://www.gooroos.com/addframe.html?page=http://www.gooroos.com/closestPointOnCurve.html // Create the closestPointOnCurve node. createNode -nam...") (current)
  • 07:17, 22 April 2017 (diff | hist) . . (+326). . N MELRandomRename(Created page with " global proc RandomRename(string $SearchStr, string $ReplStr) { //Bernice Ngo and Nick Pisca 2010 string $VMF_Obj[] = `ls -tr $SearchStr`; int $VMF_ObjSize = `size($V...") (current)
  • 07:16, 22 April 2017 (diff | hist) . . (+651). . N MEL Report(Created page with " global proc string Report(float $Perc){ //0001D LLC 2015 Nick Pisca //float $Perc = 66.3; string $fff = `file -q -sn -shortName`; string $fffe = substring($fff, 0, (s...") (current)
  • 07:16, 22 April 2017 (diff | hist) . . (+582). . N MELHardwareRenderingSequence(Created page with " //Author Nick Pisca 0001d 2009 for ($t=0;$t<5;$t++) { currentTime $t; string $Counter; if ($t<10) { $Counter = "000" + $t; } else if ($t<100 && $t>9) { $Counte...") (current)
  • 07:16, 22 April 2017 (diff | hist) . . (+394). . N Load Variables from Text File(Created page with " loadText = new loadVars(); loadText.load("resume.txt"); loadText.onLoad = function() { scroller.text = this.resumetext; }; loadTextC = new loadVars(); loadTextC.l...") (current)
  • 07:15, 22 April 2017 (diff | hist) . . (+1,113). . N Load Image By Hover and Resize with Click(Created page with " on (rollOver) { $DisplayStr = "Captions Here."; $LinkStr = "IMAGES/31_ImageName.jpg"; var HOD = createTextField("mytext", 9,(this._xmouse + 8),(this._ymouse - 3),250,200...") (current)
  • 07:15, 22 April 2017 (diff | hist) . . (+736). . N Load Family of Images with Modulus(Created page with " var myImageHolder = createEmptyMovieClip("myImageHolder", 50); var $totalImages = 113; //total minus one var $randval = int((Math.random()*$totalImages)+1); myImageHold...") (current)
  • 07:15, 22 April 2017 (diff | hist) . . (+518). . N LoadExtRef(Created page with " Function LoadExtRef(OldObj As Variant, ExtRefSet As HybridBody) As Variant If MySel.Count <> 0 Then MySel.Clear End If MySel.Add OldObj MySel.Copy If MySel.Count...") (current)
  • 07:14, 22 April 2017 (diff | hist) . . (+830). . N LineFromArcEndPts(Created page with " Function LineFromArcEndPts(ArcCrv As Variant, ConstSet As HybridBody, DestSet As HybridBody) As HybridShapeLinePtPt If CrvCheck(ArcCrv) Then Dim BPt As HybridShapePoint...") (current)
  • 07:14, 22 April 2017 (diff | hist) . . (+237). . N LinCongByTime(Created page with " Public RValue rvalue = 0.422 Public Function LinCongByTime() Dim OT, ConstB, ConstM ConstB = CDbl(Time)*1000 ConstM = 1000 OT = ((RValue*ConstB)+1) Mod ConstM RValue...") (current)
  • 07:13, 22 April 2017 (diff | hist) . . (+3,012). . N Lasernotch Eggcrate Script 2004(Created page with "right|thumb|300px|Lasernotching Setup. right|thumb|300px|Lasernotching Complete. Image:LASERNOTCHIMAGE03.png|...") (current)
  • 07:12, 22 April 2017 (diff | hist) . . (+1,445). . N Keyframed Transparency(Created page with " //Author Nicholas Pisca Copyright 2005 //creates a keyframed transparency transition by getting a Z-translate attribute int $iii = 0; $jump = `ls -sl`; int $sizejump =...") (current)
  • 07:10, 22 April 2017 (diff | hist) . . (+1,035). . N Keyframe Updating-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:keyframe-update.mel /* This little script shows how to keyframe individual attributes and how to force a scree...") (current)
  • 07:09, 22 April 2017 (diff | hist) . . (+589). . N KeyframeRGB MEL(Created page with " global proc KeyframeRGB(float $RVal, float $GVal, float $BVal, float $TimeVal, string $MatName) { if ($RVal != -1) { setKeyframe -at ("colorR") -v $RVal -t $TimeVal $Mat...") (current)

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)