User contributions

Jump to: navigation, search
Search for contributions
 
 
     
 
   

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

  • 05:21, 22 April 2017 (diff | hist) . . (+88). . N Cwall+curtainwall-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/01/curtain_wall.zip Category:MEL") (current)
  • 05:20, 22 April 2017 (diff | hist) . . (+395). . N CutObjectAndPaste(Created page with " Function CutObjectAndPaste(Obj1 As Variant, DestSet As HybridBody) As Variant If MySel.Count <> 0 Then MySel.Clear End If MySel.Add Obj1 MySel.Cut If MySel.Count <>...") (current)
  • 05:20, 22 April 2017 (diff | hist) . . (+322). . N CrvCheck(Created page with " Function CrvCheck(SampleCrv As Variant) As Boolean On Error GoTo Blast2 Dim CMeas Set CMeas = TheSPAWorkbench.GetMeasurable(SampleCrv) Dim ALen As Double ALen =...") (current)
  • 05:19, 22 April 2017 (diff | hist) . . (+715). . N CrossProduct(Created page with " Function CrossProduct(PtAx As Double, PtAy As Double, PtAz As Double, PtBx As Double, PtBy As Double, PtBz As Double, PtCx As Double, PtCy As Double, PtCz As Double) As Varia...") (current)
  • 05:19, 22 April 2017 (diff | hist) . . (+102). . N Create Normals on Surface-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:createnormalsonsurface.mel Category:MEL") (current)
  • 05:19, 22 April 2017 (diff | hist) . . (+101). . N Create Normals on Curve-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:createnormalsoncurve.mel Category:MEL") (current)
  • 05:18, 22 April 2017 (diff | hist) . . (+966). . N Create Grid of Spheres with Dedicated Shaders(Created page with " //Author Nick Pisca 0001d 2009 for ($x=1;$x<10;$x++) { for ($y=1;$y<10;$y++) { string $PSuffix = ($x+"_"+$y); sphere -r 1 -p 0 0 0 -n ("SPH_"+$PSuffix); move -r (...") (current)
  • 05:18, 22 April 2017 (diff | hist) . . (+717). . N Create Grid of Spheres(Created page with " 'Author Nick Pisca - Sphere Grid Script Dim Length002, Length003, strobjects3, DblRad, PtCenter Dim arrCenter, OrigK Length002 = Rhino.Getreal("Input the X Direction Cou...") (current)
  • 05:18, 22 April 2017 (diff | hist) . . (+106). . N Create Cells Normal to Surface-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:createcellsnormaltosurface.mel Category:MEL") (current)
  • 05:17, 22 April 2017 (diff | hist) . . (+205). . N CopyToCV-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/01/copy_to_cv_scale.zip ''More information on managing control vertices, read pages 109-119 in [http://stores.lulu.com/nickp...") (current)
  • 05:16, 22 April 2017 (diff | hist) . . (+408). . N ConvertStrToVector MEL(Created page with " global proc vector ConvertStrToVector(string $CurStr) { //0001D LLC 2015 Nick Pisca //string $CurStr = "234.32,332.043"; string $DestUVs[]; $numTokens = `tokenize $Cu...") (current)
  • 05:16, 22 April 2017 (diff | hist) . . (+264). . N Color to RGB(Created page with " Function Color_to_RGB(Color As Long) As Variant Dim CurRGB() As Integer ReDim CurRGB(2) CurRGB(0) = Color Mod 256 CurRGB(1) = (Color \ 256) Mod 256 CurRGB(2) = (Co...") (current)
  • 05:15, 22 April 2017 (diff | hist) . . (+557). . N ColorAtPointThruNurb(Created page with " global proc vector colorAtPointThruNurb(string $ObjName, float $UVal, float $VVal) { //Author Nick Pisca 0001d 2009 string $TRel[] = `listRelatives $ObjName`; string $TCon...") (current)
  • 05:14, 22 April 2017 (diff | hist) . . (+841). . N ClosestPoints(Created page with " Sub ClosestPoints(Point1 As Variant, Point2 As Variant) Dim SmallestDist As Double SmallestDist = 100000000 Dim WinHH, WinJJ As Integer WinHH = 0: WinJJ = 0 For...") (current)
  • 05:14, 22 April 2017 (diff | hist) . . (+690). . N CleanOGS(Created page with " Sub CleanOGS(CurOGS As OrderedGeometricalSet) Dim SecondPart As Part Set SecondPart = GetContainingPart(CurOGS) If CATIA.ActiveDocument.Selection.Count <> 0 Then CATI...") (current)
  • 05:13, 22 April 2017 (diff | hist) . . (+76). . N CircleOnPoints-sheetd(Created page with "http://www.sheetd.com/files/CircleOnPoints.catvba Category:CATIA DP VB") (current)
  • 05:13, 22 April 2017 (diff | hist) . . (+405). . N CheckProjectionByDirection(Created page with " Function CheckProjectionByDirection(PointObj As Variant, LineObj As Variant, TargetObj As Variant) As Boolean On Error GoTo Blast Dim Pr As HybridShapeProject Set Pr = MyH...") (current)
  • 05:13, 22 April 2017 (diff | hist) . . (+356). . N CheckProjection(Created page with " Function CheckProjection(CElement As Variant, CSupport As Variant) As Boolean On Error GoTo Blast Dim TestInt As HybridShapeProject Set TestInt = MyHSFactory.AddNewProject...") (current)
  • 05:12, 22 April 2017 (diff | hist) . . (+233). . N CheckProduct(Created page with " Function CheckProduct(InputProduct As Variant) As Boolean On Error GoTo Blast Set InputProduct2 = InputProduct.Parent.Parent CheckProduct = True Exit Function Blast: Ch...") (current)
  • 05:12, 22 April 2017 (diff | hist) . . (+367). . N CheckLineNormal(Created page with " Function CheckLineNormal(PtObj As Variant, SurfObj As Variant) As Boolean On Error GoTo Blast Dim TestInt As HybridShapeLineNormal Set TestInt = MyHSFactory.AddNewLineNorm...") (current)

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