User contributions

Jump to: navigation, search
Search for contributions
 
 
     
 
   

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

  • 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)

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