├── .gitignore ├── OcctLab.sln ├── OcctLab ├── Gui │ ├── FilterDispDialog.cpp │ ├── FilterDispDialog.h │ ├── LineStyleAndWidthDlg.cpp │ ├── LineStyleAndWidthDlg.h │ ├── ModelTreeCtrl.cpp │ ├── ModelTreeCtrl.h │ ├── kuiCmdBar.cpp │ ├── kuiCmdBar.h │ ├── kuiLayerBar.cpp │ ├── kuiLayerBar.h │ ├── kuiMainBar.cpp │ ├── kuiMainBar.h │ ├── kuiPropBar.cpp │ └── kuiPropBar.h ├── MainFrm.cpp ├── MainFrm.h ├── MainFrm2.cpp ├── OcctLab.cpp ├── OcctLab.h ├── OcctLab.rc ├── OcctLab.vcxproj ├── OcctLab.vcxproj.filters ├── OcctLab.vcxproj.user ├── OcctLabDoc.cpp ├── OcctLabDoc.h ├── OcctLabView.cpp ├── OcctLabView.h ├── ReadMe.txt ├── app │ ├── Trsf │ │ ├── kcmTrsfCopy.cpp │ │ ├── kcmTrsfCopy.h │ │ ├── kcmTrsfMirror.cpp │ │ ├── kcmTrsfMirror.h │ │ ├── kcmTrsfMove.cpp │ │ ├── kcmTrsfMove.h │ │ ├── kcmTrsfRotate.cpp │ │ ├── kcmTrsfRotate.h │ │ ├── kcmTrsfScale.cpp │ │ ├── kcmTrsfScale.h │ │ ├── kuiTrsfPlugin.cpp │ │ └── kuiTrsfPlugin.h │ └── syscmd │ │ ├── kcmDbgTool.cpp │ │ ├── kcmDbgTool.h │ │ ├── kcmDelete.cpp │ │ ├── kcmDelete.h │ │ ├── kcmDispLineStyle.cpp │ │ ├── kcmDispLineStyle.h │ │ ├── kcmDispLineWidth.cpp │ │ ├── kcmDispLineWidth.h │ │ ├── kcmDispTransparency.cpp │ │ ├── kcmDispTransparency.h │ │ ├── kcmDispVisible.cpp │ │ ├── kcmDispVisible.h │ │ ├── kcmMove.cpp │ │ ├── kcmMove.h │ │ ├── kcmShapeAnalysis.cpp │ │ ├── kcmShapeAnalysis.h │ │ ├── kcmUCSMgr.cpp │ │ ├── kcmUCSMgr.h │ │ ├── kuiSyscmdPlugin.cpp │ │ └── kuiSyscmdPlugin.h ├── occinc │ ├── OccGeom.h │ ├── OccGeomAPI.h │ ├── OccTopo.h │ └── OccTopoAPI.h ├── res │ ├── ModelTreeIcons16.bmp │ ├── ModelTreeIcons24.bmp │ ├── OcctLab.ico │ ├── OcctLab.manifest │ ├── OcctLab.rc2 │ ├── OcctLabDoc.ico │ ├── Toolbar.bmp │ └── bitmap2.bmp ├── resource.h ├── script │ ├── ScriptLib.cpp │ └── ScriptLib.h ├── stdafx.cpp └── stdafx.h ├── QxBaseLib ├── Base │ ├── QxDbgTool.cpp │ ├── QxInputBase.cpp │ ├── kColor.cpp │ ├── kPoint.cpp │ └── kVector.cpp ├── Geom │ ├── QxBRepLib.cpp │ ├── QxCurveInter.cpp │ ├── QxCurveLib.cpp │ ├── QxCurvePicker.cpp │ ├── QxFacePointPicker.cpp │ ├── QxSurfLib.cpp │ ├── kcgAnalysis.cpp │ └── kcgIntersect.cpp ├── QxBaseLib.def ├── QxBaseLib.rc ├── QxBaseLib.vcxproj ├── QxBaseLib.vcxproj.filters ├── QxBaseLib.vcxproj.user ├── QxBaseLibApp.cpp ├── QxBaseLibApp.h ├── ReadMe.txt ├── Resource.h ├── Utils │ └── QxBaseUtils.cpp ├── include │ ├── KCommonError.h │ ├── QxBRepLib.h │ ├── QxBaseDef.h │ ├── QxBaseUtils.h │ ├── QxCurveInter.h │ ├── QxCurveLib.h │ ├── QxCurvePicker.h │ ├── QxDbgTool.h │ ├── QxFacePointPicker.h │ ├── QxInputBase.h │ ├── QxLibDef.h │ ├── QxPrecision.h │ ├── QxSurfLib.h │ ├── kBase.h │ ├── kColor.h │ ├── kPoint.h │ ├── kVector.h │ ├── kcgAnalysis.h │ └── kcgIntersect.h ├── occinc │ ├── OccGeom.h │ ├── OccGeomAPI.h │ ├── OccTopo.h │ └── OccTopoAPI.h ├── res │ └── QxBaseLib.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QxCurvePlugin ├── Dialogs │ ├── TextEditDialog.cpp │ └── TextEditDialog.h ├── Edit │ ├── kcmCurveBlend.cpp │ ├── kcmCurveBlend.h │ ├── kcmCurveBreak.cpp │ ├── kcmCurveBreak.h │ ├── kcmCurveFillet.cpp │ ├── kcmCurveFillet.h │ ├── kcmCurveOffset.cpp │ ├── kcmCurveOffset.h │ ├── kcmCurvePolyline.cpp │ ├── kcmCurvePolyline.h │ ├── kcmCurveTrim.cpp │ ├── kcmCurveTrim.h │ ├── kcmFaceCurve.cpp │ ├── kcmFaceCurve.h │ ├── kcmInterCurve.cpp │ ├── kcmInterCurve.h │ ├── kcmNormProjCurve.cpp │ └── kcmNormProjCurve.h ├── Make │ ├── kcmArc.cpp │ ├── kcmArc.h │ ├── kcmCircle.cpp │ ├── kcmCircle.h │ ├── kcmLine.cpp │ ├── kcmLine.h │ ├── kcmPoint.cpp │ ├── kcmPoint.h │ ├── kcmPolygon.cpp │ ├── kcmPolygon.h │ ├── kcmRect.cpp │ ├── kcmRect.h │ ├── kcmSpline.cpp │ ├── kcmSpline.h │ ├── kcmWireText.cpp │ └── kcmWireText.h ├── QxCurvePlugin.cpp ├── QxCurvePlugin.def ├── QxCurvePlugin.h ├── QxCurvePlugin.rc ├── QxCurvePlugin.vcxproj ├── QxCurvePlugin.vcxproj.filters ├── QxCurvePlugin.vcxproj.user ├── QxCurvePluginApp.cpp ├── QxCurvePluginApp.h ├── Resource.h ├── kcmSewCurve.cpp ├── kcmSewCurve.h ├── res │ └── QxCurvePlugin.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QxDataExchg ├── DXF │ ├── dl_attributes.h │ ├── dl_codes.h │ ├── dl_creationadapter.h │ ├── dl_creationinterface.h │ ├── dl_dxf.cpp │ ├── dl_dxf.h │ ├── dl_entities.h │ ├── dl_exception.h │ ├── dl_extrusion.h │ ├── dl_writer.h │ ├── dl_writer_ascii.cpp │ └── dl_writer_ascii.h ├── Dialogs │ ├── XCAFDocDialog.cpp │ └── XCAFDocDialog.h ├── Export │ ├── kcBRepExport.cpp │ ├── kcBaseExport.cpp │ ├── kcIGESExport.cpp │ ├── kcSTEPExport.cpp │ └── kcgBRepFile.cpp ├── Import │ ├── kcBRepReader.cpp │ ├── kcBaseReader.cpp │ ├── kcDXFReader.cpp │ ├── kcIGESReader.cpp │ ├── kcSTEPReader.cpp │ ├── kcShapeAttrib.cpp │ ├── kcShapeAttribMgr.cpp │ ├── kcStepLayerMgr.cpp │ ├── kcStepMbStringMgr.cpp │ └── kcXCAFImportStep.cpp ├── QxDataExchg.def ├── QxDataExchg.rc ├── QxDataExchg.vcxproj ├── QxDataExchg.vcxproj.filters ├── QxDataExchg.vcxproj.user ├── QxDataExchgApp.cpp ├── QxDataExchgApp.h ├── ReadMe.txt ├── include │ ├── kcBRepExport.h │ ├── kcBRepReader.h │ ├── kcBaseExport.h │ ├── kcBaseReader.h │ ├── kcDXFReader.h │ ├── kcIGESExport.h │ ├── kcIGESReader.h │ ├── kcSTEPExport.h │ ├── kcSTEPReader.h │ ├── kcShapeAttrib.h │ ├── kcShapeAttribMgr.h │ ├── kcStepLayerMgr.h │ ├── kcStepMbStringMgr.h │ ├── kcXCAFImportStep.h │ └── kcgBRepFile.h ├── res │ └── QxDataExchg.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QxLuaScript ├── Dialogs │ ├── LuaScriptDlg.cpp │ └── LuaScriptDlg.h ├── QxLuaScript.def ├── QxLuaScript.rc ├── QxLuaScript.vcxproj ├── QxLuaScript.vcxproj.filters ├── QxLuaScript.vcxproj.user ├── QxLuaScriptApp.cpp ├── QxLuaScriptApp.h ├── ReadMe.txt ├── Script │ ├── QxLuaScript.cpp │ ├── QxLuaState.cpp │ ├── sciModelLib.cpp │ ├── sciModelLib.h │ ├── sciTopolLib.cpp │ └── sciTopolLib.h ├── include │ ├── QxLuaScript.h │ └── QxLuaState.h ├── res │ └── QxLuaScript.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QxModelLib ├── QxModelLib.def ├── QxModelLib.rc ├── QxModelLib.vcxproj ├── QxModelLib.vcxproj.filters ├── QxModelLib.vcxproj.user ├── QxModelLibApp.cpp ├── QxModelLibApp.h ├── ReadMe.txt ├── include │ ├── AIS_EntityShape.h │ ├── OxModel.h │ ├── QxModelLib.h │ ├── QxStgBlock.h │ ├── QxStgModelDef.h │ ├── kcBasePlane.h │ ├── kcEntity.h │ ├── kcEntityFactory.h │ ├── kcEntityTrsf.h │ ├── kcHandleMgr.h │ ├── kcLayer.h │ ├── kcModel.h │ ├── kcShapeAttrib.h │ ├── kcShapeAttribMgr.h │ ├── kcSnapMngr.h │ ├── kiSelSet.h │ ├── kiSnapMngr.h │ ├── kiUndoMgr.h │ ├── kuiInterface.h │ ├── kuiLayersDialog.h │ ├── kvCoordSystem.h │ ├── kvCoordSystemMgr.h │ ├── kvGrid.h │ └── stdafx.h ├── res │ └── QxModelLib.rc2 ├── resource.h ├── source │ ├── AIS_Curve.cpp │ ├── AIS_Curve.h │ ├── AIS_EntityShape.cpp │ ├── Dialogs │ │ └── kuiLayersDialog.cpp │ ├── QxStgBlock.cpp │ ├── kcBasePlane.cpp │ ├── kcEntity.cpp │ ├── kcEntity2.cpp │ ├── kcEntityFactory.cpp │ ├── kcEntityTrsf.cpp │ ├── kcHandleMgr.cpp │ ├── kcLayer.cpp │ ├── kcModel.cpp │ ├── kcModel2.cpp │ ├── kcShapeAttrib.cpp │ ├── kcShapeAttribMgr.cpp │ ├── kcSnapMngr.cpp │ ├── kiSelSet.cpp │ ├── kiSnapMngr.cpp │ ├── kiUndoMgr.cpp │ ├── kvCoordSystem.cpp │ ├── kvCoordSystemMgr.cpp │ └── kvGrid.cpp ├── stdafx.cpp ├── targetver.h └── zlib │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── QxSolidPlugin ├── QxSolidPlugin.cpp ├── QxSolidPlugin.def ├── QxSolidPlugin.h ├── QxSolidPlugin.rc ├── QxSolidPlugin.vcxproj ├── QxSolidPlugin.vcxproj.filters ├── QxSolidPlugin.vcxproj.user ├── QxSolidPluginApp.cpp ├── QxSolidPluginApp.h ├── Resource.h ├── edit │ ├── kcmSolidDeCompound.cpp │ ├── kcmSolidDeCompound.h │ ├── kcmSolidDraft.cpp │ ├── kcmSolidDraft.h │ ├── kcmSolidFillet.cpp │ ├── kcmSolidFillet.h │ ├── kcmSolidLoft.cpp │ ├── kcmSolidLoft.h │ ├── kcmSolidOffset.cpp │ ├── kcmSolidOffset.h │ ├── kcmSolidSewing.cpp │ ├── kcmSolidSewing.h │ ├── kcmSolidTrim.cpp │ ├── kcmSolidTrim.h │ ├── kcmThickSolid.cpp │ └── kcmThickSolid.h ├── kcmSolidBoolean.cpp ├── kcmSolidBoolean.h ├── make │ ├── kcmSolidBox.cpp │ ├── kcmSolidBox.h │ ├── kcmSolidCone.cpp │ ├── kcmSolidCone.h │ ├── kcmSolidCylinder.cpp │ ├── kcmSolidCylinder.h │ ├── kcmSolidPipe.cpp │ ├── kcmSolidPipe.h │ ├── kcmSolidPipeShell.cpp │ ├── kcmSolidPipeShell.h │ ├── kcmSolidPrism.cpp │ ├── kcmSolidPrism.h │ ├── kcmSolidRevol.cpp │ ├── kcmSolidRevol.h │ ├── kcmSolidSphere.cpp │ └── kcmSolidSphere.h ├── res │ └── QxSolidPlugin.rc2 ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── tools │ ├── kcmOneFaceBase.cpp │ └── kcmOneFaceBase.h ├── QxSurfPlugin ├── Edit │ ├── kcmRegionBoolean.cpp │ ├── kcmRegionBoolean.h │ ├── kcmSurfaceFilling.cpp │ ├── kcmSurfaceFilling.h │ ├── kcmSurfaceSplit.cpp │ ├── kcmSurfaceSplit.h │ ├── kcmSurfaceTool.cpp │ ├── kcmSurfaceTool.h │ ├── kcmSurfaceTrim.cpp │ └── kcmSurfaceTrim.h ├── Make │ ├── kcmLoftSurface.cpp │ ├── kcmLoftSurface.h │ ├── kcmLoopToFace.cpp │ ├── kcmLoopToFace.h │ ├── kcmPlane.cpp │ ├── kcmPlane.h │ ├── kcmPrismSurface.cpp │ ├── kcmPrismSurface.h │ ├── kcmRevolSurface.cpp │ ├── kcmRevolSurface.h │ ├── kcmRuledSurface.cpp │ ├── kcmRuledSurface.h │ ├── kcmSurfPolygon.cpp │ ├── kcmSurfPolygon.h │ ├── kcmSurfacePipe.cpp │ └── kcmSurfacePipe.h ├── QxSurfPlugin.cpp ├── QxSurfPlugin.def ├── QxSurfPlugin.h ├── QxSurfPlugin.rc ├── QxSurfPlugin.vcxproj ├── QxSurfPlugin.vcxproj.filters ├── QxSurfPlugin.vcxproj.user ├── QxSurfPluginApp.cpp ├── QxSurfPluginApp.h ├── Resource.h ├── res │ └── QxSurfPlugin.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QxSysLib ├── QxSysLib.def ├── QxSysLib.rc ├── QxSysLib.vcxproj ├── QxSysLib.vcxproj.filters ├── QxSysLib.vcxproj.user ├── QxSysLibApp.cpp ├── QxSysLibApp.h ├── ReadMe.txt ├── include │ ├── Gui │ │ ├── AutoHideBar.h │ │ ├── DrawFrame.h │ │ ├── PinDockBar.h │ │ ├── XInputEdit.h │ │ ├── scbarcf.h │ │ ├── scbarg.h │ │ └── sizecbar.h │ ├── Input │ │ ├── kiInputAngle.h │ │ ├── kiInputDirTool.h │ │ ├── kiInputEdit.h │ │ ├── kiInputEntityTool.h │ │ ├── kiInputLength.h │ │ ├── kiInputOptionsTool.h │ │ ├── kiInputPicker.h │ │ ├── kiInputPoint.h │ │ ├── kiInputPointOnCurve.h │ │ ├── kiInputPointTool.h │ │ ├── kiInputTool.h │ │ ├── kiInputValueTool.h │ │ ├── kiInputVector.h │ │ └── kiOptionSet.h │ ├── QxAnimationShape.h │ ├── QxCmdPlugin.h │ ├── QxCmdPluginImpl.h │ ├── QxCommandItem.h │ ├── QxPluginMgr.h │ ├── QxStgDocDef.h │ ├── QxStgDocReader.h │ ├── QxStgDocWriter.h │ ├── QxSysInterface.h │ ├── QxSysLib.h │ ├── QxWndTimerMgr.h │ ├── kcDispArrow.h │ ├── kcDispObj.h │ ├── kcDocContext.h │ ├── kcPreviewObj.h │ ├── kcPreviewText.h │ ├── kcProgressThread.h │ ├── kcSysUtils.h │ ├── kcgTextLib.h │ ├── kcmUtils.h │ ├── kiCommand.h │ ├── kiCommandMgr.h │ └── kiParseString.h ├── res │ └── QxSysLib.rc2 ├── resource.h ├── source │ ├── Cmd │ │ ├── kcmUtils.cpp │ │ ├── kiCommand.cpp │ │ └── kiCommandMgr.cpp │ ├── Disp │ │ ├── kcDispArrow.cpp │ │ ├── kcDispObj.cpp │ │ ├── kcPreviewObj.cpp │ │ ├── kcPreviewObj2.cpp │ │ └── kcPreviewText.cpp │ ├── Dlgs │ │ ├── InputDblDlg.cpp │ │ ├── InputDblDlg.h │ │ ├── InputIntDlg.cpp │ │ ├── InputIntDlg.h │ │ ├── ShapeStructDialog.cpp │ │ ├── ShapeStructDialog.h │ │ ├── kuiProgressDlg.cpp │ │ └── kuiProgressDlg.h │ ├── Geo │ │ ├── QxAnimationShape.cpp │ │ ├── kcSysUtils.cpp │ │ └── kcgTextLib.cpp │ ├── Gui │ │ ├── AutoHideBar.cpp │ │ ├── DrawFrame.cpp │ │ ├── PinDockBar.cpp │ │ ├── XInputEdit.cpp │ │ ├── scbarcf.cpp │ │ ├── scbarg.cpp │ │ └── sizecbar.cpp │ ├── Input │ │ ├── kiInputAngle.cpp │ │ ├── kiInputDirTool.cpp │ │ ├── kiInputEdit.cpp │ │ ├── kiInputEntityTool.cpp │ │ ├── kiInputLength.cpp │ │ ├── kiInputOptionsTool.cpp │ │ ├── kiInputPicker.cpp │ │ ├── kiInputPoint.cpp │ │ ├── kiInputPointOnCurve.cpp │ │ ├── kiInputPointTool.cpp │ │ ├── kiInputTool.cpp │ │ ├── kiInputValueTool.cpp │ │ ├── kiInputVector.cpp │ │ ├── kiOptionSet.cpp │ │ └── kiParseString.cpp │ ├── Plugin │ │ ├── QxCmdPlugin.cpp │ │ ├── QxCmdPluginImpl.cpp │ │ ├── QxCommandItem.cpp │ │ └── QxPluginMgr.cpp │ ├── QxSysLib.cpp │ ├── Stg │ │ ├── QxStgDocReader.cpp │ │ └── QxStgDocWriter.cpp │ └── Sys │ │ ├── QxWndTimerMgr.cpp │ │ ├── kcDocContext.cpp │ │ └── kcProgressThread.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QxToolPlugin ├── Dialogs │ ├── kcPropertyDlg.cpp │ └── kcPropertyDlg.h ├── Dim │ ├── kcmAngleDim.cpp │ ├── kcmAngleDim.h │ ├── kcmDiameterDim.cpp │ ├── kcmDiameterDim.h │ ├── kcmLengthDimension.cpp │ ├── kcmLengthDimension.h │ ├── kcmRadiusDim.cpp │ └── kcmRadiusDim.h ├── QxToolPlugin.cpp ├── QxToolPlugin.def ├── QxToolPlugin.h ├── QxToolPlugin.rc ├── QxToolPlugin.vcxproj ├── QxToolPlugin.vcxproj.filters ├── QxToolPlugin.vcxproj.user ├── QxToolPluginApp.cpp ├── QxToolPluginApp.h ├── Resource.h ├── analyze │ ├── kcmShapeProperty.cpp │ ├── kcmShapeProperty.h │ ├── kcmShapeStatistic.cpp │ └── kcmShapeStatistic.h ├── kcmAnimationDemo.cpp ├── kcmAnimationDemo.h ├── kcmBasePlane.cpp ├── kcmBasePlane.h ├── kcmDispColor.cpp ├── kcmDispColor.h ├── kcmDispShadingModel.cpp ├── kcmDispShadingModel.h ├── kcmShapeCheck.cpp ├── kcmShapeCheck.h ├── kcmShapeFix.cpp ├── kcmShapeFix.h ├── res │ └── QxToolPlugin.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── Release.zip ├── bin └── x64 │ └── release │ └── Release.zip └── luaLib ├── LuaLib.vcxproj ├── LuaLib.vcxproj.filters ├── LuaLib.vcxproj.user ├── lapi.c ├── lapi.h ├── lauxlib.c ├── lauxlib.h ├── lbaselib.c ├── lbitlib.c ├── lcode.c ├── lcode.h ├── lcorolib.c ├── lctype.c ├── lctype.h ├── ldblib.c ├── ldebug.c ├── ldebug.h ├── ldo.c ├── ldo.h ├── ldump.c ├── lfunc.c ├── lfunc.h ├── lgc.c ├── lgc.h ├── linit.c ├── liolib.c ├── llex.c ├── llex.h ├── llimits.h ├── lmathlib.c ├── lmem.c ├── lmem.h ├── loadlib.c ├── lobject.c ├── lobject.h ├── lopcodes.c ├── lopcodes.h ├── loslib.c ├── lparser.c ├── lparser.h ├── lprefix.h ├── lstate.c ├── lstate.h ├── lstring.c ├── lstring.h ├── lstrlib.c ├── ltable.c ├── ltable.h ├── ltablib.c ├── ltm.c ├── ltm.h ├── lua.h ├── lua.hpp ├── luaconf.h ├── lualib.h ├── lundump.c ├── lundump.h ├── lutf8lib.c ├── lvm.c ├── lvm.h ├── lzio.c └── lzio.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/.gitignore -------------------------------------------------------------------------------- /OcctLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab.sln -------------------------------------------------------------------------------- /OcctLab/Gui/FilterDispDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/FilterDispDialog.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/FilterDispDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/FilterDispDialog.h -------------------------------------------------------------------------------- /OcctLab/Gui/LineStyleAndWidthDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/LineStyleAndWidthDlg.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/LineStyleAndWidthDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/LineStyleAndWidthDlg.h -------------------------------------------------------------------------------- /OcctLab/Gui/ModelTreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/ModelTreeCtrl.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/ModelTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/ModelTreeCtrl.h -------------------------------------------------------------------------------- /OcctLab/Gui/kuiCmdBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiCmdBar.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/kuiCmdBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiCmdBar.h -------------------------------------------------------------------------------- /OcctLab/Gui/kuiLayerBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiLayerBar.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/kuiLayerBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiLayerBar.h -------------------------------------------------------------------------------- /OcctLab/Gui/kuiMainBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiMainBar.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/kuiMainBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiMainBar.h -------------------------------------------------------------------------------- /OcctLab/Gui/kuiPropBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiPropBar.cpp -------------------------------------------------------------------------------- /OcctLab/Gui/kuiPropBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/Gui/kuiPropBar.h -------------------------------------------------------------------------------- /OcctLab/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/MainFrm.cpp -------------------------------------------------------------------------------- /OcctLab/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/MainFrm.h -------------------------------------------------------------------------------- /OcctLab/MainFrm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/MainFrm2.cpp -------------------------------------------------------------------------------- /OcctLab/OcctLab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLab.cpp -------------------------------------------------------------------------------- /OcctLab/OcctLab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLab.h -------------------------------------------------------------------------------- /OcctLab/OcctLab.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLab.rc -------------------------------------------------------------------------------- /OcctLab/OcctLab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLab.vcxproj -------------------------------------------------------------------------------- /OcctLab/OcctLab.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLab.vcxproj.filters -------------------------------------------------------------------------------- /OcctLab/OcctLab.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLab.vcxproj.user -------------------------------------------------------------------------------- /OcctLab/OcctLabDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLabDoc.cpp -------------------------------------------------------------------------------- /OcctLab/OcctLabDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLabDoc.h -------------------------------------------------------------------------------- /OcctLab/OcctLabView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLabView.cpp -------------------------------------------------------------------------------- /OcctLab/OcctLabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/OcctLabView.h -------------------------------------------------------------------------------- /OcctLab/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/ReadMe.txt -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfCopy.cpp -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfCopy.h -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfMirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfMirror.cpp -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfMirror.h -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfMove.cpp -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfMove.h -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfRotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfRotate.cpp -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfRotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfRotate.h -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfScale.cpp -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kcmTrsfScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kcmTrsfScale.h -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kuiTrsfPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kuiTrsfPlugin.cpp -------------------------------------------------------------------------------- /OcctLab/app/Trsf/kuiTrsfPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/Trsf/kuiTrsfPlugin.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDbgTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDbgTool.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDbgTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDbgTool.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDelete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDelete.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDelete.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispLineStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispLineStyle.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispLineStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispLineStyle.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispLineWidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispLineWidth.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispLineWidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispLineWidth.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispTransparency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispTransparency.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispTransparency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispTransparency.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispVisible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispVisible.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmDispVisible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmDispVisible.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmMove.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmMove.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmShapeAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmShapeAnalysis.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmShapeAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmShapeAnalysis.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmUCSMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmUCSMgr.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kcmUCSMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kcmUCSMgr.h -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kuiSyscmdPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kuiSyscmdPlugin.cpp -------------------------------------------------------------------------------- /OcctLab/app/syscmd/kuiSyscmdPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/app/syscmd/kuiSyscmdPlugin.h -------------------------------------------------------------------------------- /OcctLab/occinc/OccGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/occinc/OccGeom.h -------------------------------------------------------------------------------- /OcctLab/occinc/OccGeomAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/occinc/OccGeomAPI.h -------------------------------------------------------------------------------- /OcctLab/occinc/OccTopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/occinc/OccTopo.h -------------------------------------------------------------------------------- /OcctLab/occinc/OccTopoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/occinc/OccTopoAPI.h -------------------------------------------------------------------------------- /OcctLab/res/ModelTreeIcons16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/ModelTreeIcons16.bmp -------------------------------------------------------------------------------- /OcctLab/res/ModelTreeIcons24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/ModelTreeIcons24.bmp -------------------------------------------------------------------------------- /OcctLab/res/OcctLab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/OcctLab.ico -------------------------------------------------------------------------------- /OcctLab/res/OcctLab.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/OcctLab.manifest -------------------------------------------------------------------------------- /OcctLab/res/OcctLab.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/OcctLab.rc2 -------------------------------------------------------------------------------- /OcctLab/res/OcctLabDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/OcctLabDoc.ico -------------------------------------------------------------------------------- /OcctLab/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/Toolbar.bmp -------------------------------------------------------------------------------- /OcctLab/res/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/res/bitmap2.bmp -------------------------------------------------------------------------------- /OcctLab/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/resource.h -------------------------------------------------------------------------------- /OcctLab/script/ScriptLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/script/ScriptLib.cpp -------------------------------------------------------------------------------- /OcctLab/script/ScriptLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/script/ScriptLib.h -------------------------------------------------------------------------------- /OcctLab/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/stdafx.cpp -------------------------------------------------------------------------------- /OcctLab/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/OcctLab/stdafx.h -------------------------------------------------------------------------------- /QxBaseLib/Base/QxDbgTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Base/QxDbgTool.cpp -------------------------------------------------------------------------------- /QxBaseLib/Base/QxInputBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Base/QxInputBase.cpp -------------------------------------------------------------------------------- /QxBaseLib/Base/kColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Base/kColor.cpp -------------------------------------------------------------------------------- /QxBaseLib/Base/kPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Base/kPoint.cpp -------------------------------------------------------------------------------- /QxBaseLib/Base/kVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Base/kVector.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/QxBRepLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/QxBRepLib.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/QxCurveInter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/QxCurveInter.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/QxCurveLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/QxCurveLib.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/QxCurvePicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/QxCurvePicker.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/QxFacePointPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/QxFacePointPicker.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/QxSurfLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/QxSurfLib.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/kcgAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/kcgAnalysis.cpp -------------------------------------------------------------------------------- /QxBaseLib/Geom/kcgIntersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Geom/kcgIntersect.cpp -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLib.def -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLib.rc -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLib.vcxproj -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLib.vcxproj.filters -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLib.vcxproj.user -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLibApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLibApp.cpp -------------------------------------------------------------------------------- /QxBaseLib/QxBaseLibApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/QxBaseLibApp.h -------------------------------------------------------------------------------- /QxBaseLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/ReadMe.txt -------------------------------------------------------------------------------- /QxBaseLib/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Resource.h -------------------------------------------------------------------------------- /QxBaseLib/Utils/QxBaseUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/Utils/QxBaseUtils.cpp -------------------------------------------------------------------------------- /QxBaseLib/include/KCommonError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/KCommonError.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxBRepLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxBRepLib.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxBaseDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxBaseDef.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxBaseUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxBaseUtils.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxCurveInter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxCurveInter.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxCurveLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxCurveLib.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxCurvePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxCurvePicker.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxDbgTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxDbgTool.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxFacePointPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxFacePointPicker.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxInputBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxInputBase.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxLibDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxLibDef.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxPrecision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxPrecision.h -------------------------------------------------------------------------------- /QxBaseLib/include/QxSurfLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/QxSurfLib.h -------------------------------------------------------------------------------- /QxBaseLib/include/kBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/kBase.h -------------------------------------------------------------------------------- /QxBaseLib/include/kColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/kColor.h -------------------------------------------------------------------------------- /QxBaseLib/include/kPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/kPoint.h -------------------------------------------------------------------------------- /QxBaseLib/include/kVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/kVector.h -------------------------------------------------------------------------------- /QxBaseLib/include/kcgAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/kcgAnalysis.h -------------------------------------------------------------------------------- /QxBaseLib/include/kcgIntersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/include/kcgIntersect.h -------------------------------------------------------------------------------- /QxBaseLib/occinc/OccGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/occinc/OccGeom.h -------------------------------------------------------------------------------- /QxBaseLib/occinc/OccGeomAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/occinc/OccGeomAPI.h -------------------------------------------------------------------------------- /QxBaseLib/occinc/OccTopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/occinc/OccTopo.h -------------------------------------------------------------------------------- /QxBaseLib/occinc/OccTopoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/occinc/OccTopoAPI.h -------------------------------------------------------------------------------- /QxBaseLib/res/QxBaseLib.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/res/QxBaseLib.rc2 -------------------------------------------------------------------------------- /QxBaseLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/stdafx.cpp -------------------------------------------------------------------------------- /QxBaseLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/stdafx.h -------------------------------------------------------------------------------- /QxBaseLib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxBaseLib/targetver.h -------------------------------------------------------------------------------- /QxCurvePlugin/Dialogs/TextEditDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Dialogs/TextEditDialog.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Dialogs/TextEditDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Dialogs/TextEditDialog.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveBlend.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveBlend.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveBreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveBreak.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveBreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveBreak.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveFillet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveFillet.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveFillet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveFillet.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveOffset.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveOffset.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurvePolyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurvePolyline.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurvePolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurvePolyline.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveTrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveTrim.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmCurveTrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmCurveTrim.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmFaceCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmFaceCurve.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmFaceCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmFaceCurve.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmInterCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmInterCurve.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmInterCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmInterCurve.h -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmNormProjCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmNormProjCurve.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Edit/kcmNormProjCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Edit/kcmNormProjCurve.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmArc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmArc.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmArc.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmCircle.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmCircle.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmLine.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmLine.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmPoint.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmPoint.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmPolygon.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmPolygon.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmRect.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmRect.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmSpline.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmSpline.h -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmWireText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmWireText.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/Make/kcmWireText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Make/kcmWireText.h -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.def -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.h -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.rc -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.vcxproj -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.vcxproj.filters -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePlugin.vcxproj.user -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePluginApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePluginApp.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/QxCurvePluginApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/QxCurvePluginApp.h -------------------------------------------------------------------------------- /QxCurvePlugin/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/Resource.h -------------------------------------------------------------------------------- /QxCurvePlugin/kcmSewCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/kcmSewCurve.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/kcmSewCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/kcmSewCurve.h -------------------------------------------------------------------------------- /QxCurvePlugin/res/QxCurvePlugin.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/res/QxCurvePlugin.rc2 -------------------------------------------------------------------------------- /QxCurvePlugin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/stdafx.cpp -------------------------------------------------------------------------------- /QxCurvePlugin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/stdafx.h -------------------------------------------------------------------------------- /QxCurvePlugin/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxCurvePlugin/targetver.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_attributes.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_codes.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_creationadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_creationadapter.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_creationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_creationinterface.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_dxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_dxf.cpp -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_dxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_dxf.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_entities.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_exception.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_extrusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_extrusion.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_writer.h -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_writer_ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_writer_ascii.cpp -------------------------------------------------------------------------------- /QxDataExchg/DXF/dl_writer_ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/DXF/dl_writer_ascii.h -------------------------------------------------------------------------------- /QxDataExchg/Dialogs/XCAFDocDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Dialogs/XCAFDocDialog.cpp -------------------------------------------------------------------------------- /QxDataExchg/Dialogs/XCAFDocDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Dialogs/XCAFDocDialog.h -------------------------------------------------------------------------------- /QxDataExchg/Export/kcBRepExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Export/kcBRepExport.cpp -------------------------------------------------------------------------------- /QxDataExchg/Export/kcBaseExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Export/kcBaseExport.cpp -------------------------------------------------------------------------------- /QxDataExchg/Export/kcIGESExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Export/kcIGESExport.cpp -------------------------------------------------------------------------------- /QxDataExchg/Export/kcSTEPExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Export/kcSTEPExport.cpp -------------------------------------------------------------------------------- /QxDataExchg/Export/kcgBRepFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Export/kcgBRepFile.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcBRepReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcBRepReader.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcBaseReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcBaseReader.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcDXFReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcDXFReader.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcIGESReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcIGESReader.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcSTEPReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcSTEPReader.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcShapeAttrib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcShapeAttrib.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcShapeAttribMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcShapeAttribMgr.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcStepLayerMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcStepLayerMgr.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcStepMbStringMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcStepMbStringMgr.cpp -------------------------------------------------------------------------------- /QxDataExchg/Import/kcXCAFImportStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/Import/kcXCAFImportStep.cpp -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchg.def -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchg.rc -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchg.vcxproj -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchg.vcxproj.filters -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchg.vcxproj.user -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchgApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchgApp.cpp -------------------------------------------------------------------------------- /QxDataExchg/QxDataExchgApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/QxDataExchgApp.h -------------------------------------------------------------------------------- /QxDataExchg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/ReadMe.txt -------------------------------------------------------------------------------- /QxDataExchg/include/kcBRepExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcBRepExport.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcBRepReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcBRepReader.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcBaseExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcBaseExport.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcBaseReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcBaseReader.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcDXFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcDXFReader.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcIGESExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcIGESExport.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcIGESReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcIGESReader.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcSTEPExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcSTEPExport.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcSTEPReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcSTEPReader.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcShapeAttrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcShapeAttrib.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcShapeAttribMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcShapeAttribMgr.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcStepLayerMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcStepLayerMgr.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcStepMbStringMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcStepMbStringMgr.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcXCAFImportStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcXCAFImportStep.h -------------------------------------------------------------------------------- /QxDataExchg/include/kcgBRepFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/include/kcgBRepFile.h -------------------------------------------------------------------------------- /QxDataExchg/res/QxDataExchg.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/res/QxDataExchg.rc2 -------------------------------------------------------------------------------- /QxDataExchg/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/resource.h -------------------------------------------------------------------------------- /QxDataExchg/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/stdafx.cpp -------------------------------------------------------------------------------- /QxDataExchg/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/stdafx.h -------------------------------------------------------------------------------- /QxDataExchg/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxDataExchg/targetver.h -------------------------------------------------------------------------------- /QxLuaScript/Dialogs/LuaScriptDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Dialogs/LuaScriptDlg.cpp -------------------------------------------------------------------------------- /QxLuaScript/Dialogs/LuaScriptDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Dialogs/LuaScriptDlg.h -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScript.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScript.def -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScript.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScript.rc -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScript.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScript.vcxproj -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScript.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScript.vcxproj.filters -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScript.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScript.vcxproj.user -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScriptApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScriptApp.cpp -------------------------------------------------------------------------------- /QxLuaScript/QxLuaScriptApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/QxLuaScriptApp.h -------------------------------------------------------------------------------- /QxLuaScript/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/ReadMe.txt -------------------------------------------------------------------------------- /QxLuaScript/Script/QxLuaScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Script/QxLuaScript.cpp -------------------------------------------------------------------------------- /QxLuaScript/Script/QxLuaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Script/QxLuaState.cpp -------------------------------------------------------------------------------- /QxLuaScript/Script/sciModelLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Script/sciModelLib.cpp -------------------------------------------------------------------------------- /QxLuaScript/Script/sciModelLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Script/sciModelLib.h -------------------------------------------------------------------------------- /QxLuaScript/Script/sciTopolLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Script/sciTopolLib.cpp -------------------------------------------------------------------------------- /QxLuaScript/Script/sciTopolLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/Script/sciTopolLib.h -------------------------------------------------------------------------------- /QxLuaScript/include/QxLuaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/include/QxLuaScript.h -------------------------------------------------------------------------------- /QxLuaScript/include/QxLuaState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/include/QxLuaState.h -------------------------------------------------------------------------------- /QxLuaScript/res/QxLuaScript.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/res/QxLuaScript.rc2 -------------------------------------------------------------------------------- /QxLuaScript/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/resource.h -------------------------------------------------------------------------------- /QxLuaScript/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/stdafx.cpp -------------------------------------------------------------------------------- /QxLuaScript/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/stdafx.h -------------------------------------------------------------------------------- /QxLuaScript/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxLuaScript/targetver.h -------------------------------------------------------------------------------- /QxModelLib/QxModelLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLib.def -------------------------------------------------------------------------------- /QxModelLib/QxModelLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLib.rc -------------------------------------------------------------------------------- /QxModelLib/QxModelLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLib.vcxproj -------------------------------------------------------------------------------- /QxModelLib/QxModelLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLib.vcxproj.filters -------------------------------------------------------------------------------- /QxModelLib/QxModelLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLib.vcxproj.user -------------------------------------------------------------------------------- /QxModelLib/QxModelLibApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLibApp.cpp -------------------------------------------------------------------------------- /QxModelLib/QxModelLibApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/QxModelLibApp.h -------------------------------------------------------------------------------- /QxModelLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/ReadMe.txt -------------------------------------------------------------------------------- /QxModelLib/include/AIS_EntityShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/AIS_EntityShape.h -------------------------------------------------------------------------------- /QxModelLib/include/OxModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/OxModel.h -------------------------------------------------------------------------------- /QxModelLib/include/QxModelLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/QxModelLib.h -------------------------------------------------------------------------------- /QxModelLib/include/QxStgBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/QxStgBlock.h -------------------------------------------------------------------------------- /QxModelLib/include/QxStgModelDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/QxStgModelDef.h -------------------------------------------------------------------------------- /QxModelLib/include/kcBasePlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcBasePlane.h -------------------------------------------------------------------------------- /QxModelLib/include/kcEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcEntity.h -------------------------------------------------------------------------------- /QxModelLib/include/kcEntityFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcEntityFactory.h -------------------------------------------------------------------------------- /QxModelLib/include/kcEntityTrsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcEntityTrsf.h -------------------------------------------------------------------------------- /QxModelLib/include/kcHandleMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcHandleMgr.h -------------------------------------------------------------------------------- /QxModelLib/include/kcLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcLayer.h -------------------------------------------------------------------------------- /QxModelLib/include/kcModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcModel.h -------------------------------------------------------------------------------- /QxModelLib/include/kcShapeAttrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcShapeAttrib.h -------------------------------------------------------------------------------- /QxModelLib/include/kcShapeAttribMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcShapeAttribMgr.h -------------------------------------------------------------------------------- /QxModelLib/include/kcSnapMngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kcSnapMngr.h -------------------------------------------------------------------------------- /QxModelLib/include/kiSelSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kiSelSet.h -------------------------------------------------------------------------------- /QxModelLib/include/kiSnapMngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kiSnapMngr.h -------------------------------------------------------------------------------- /QxModelLib/include/kiUndoMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kiUndoMgr.h -------------------------------------------------------------------------------- /QxModelLib/include/kuiInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kuiInterface.h -------------------------------------------------------------------------------- /QxModelLib/include/kuiLayersDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kuiLayersDialog.h -------------------------------------------------------------------------------- /QxModelLib/include/kvCoordSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kvCoordSystem.h -------------------------------------------------------------------------------- /QxModelLib/include/kvCoordSystemMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kvCoordSystemMgr.h -------------------------------------------------------------------------------- /QxModelLib/include/kvGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/kvGrid.h -------------------------------------------------------------------------------- /QxModelLib/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/include/stdafx.h -------------------------------------------------------------------------------- /QxModelLib/res/QxModelLib.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/res/QxModelLib.rc2 -------------------------------------------------------------------------------- /QxModelLib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/resource.h -------------------------------------------------------------------------------- /QxModelLib/source/AIS_Curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/AIS_Curve.cpp -------------------------------------------------------------------------------- /QxModelLib/source/AIS_Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/AIS_Curve.h -------------------------------------------------------------------------------- /QxModelLib/source/AIS_EntityShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/AIS_EntityShape.cpp -------------------------------------------------------------------------------- /QxModelLib/source/Dialogs/kuiLayersDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/Dialogs/kuiLayersDialog.cpp -------------------------------------------------------------------------------- /QxModelLib/source/QxStgBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/QxStgBlock.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcBasePlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcBasePlane.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcEntity.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcEntity2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcEntity2.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcEntityFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcEntityFactory.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcEntityTrsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcEntityTrsf.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcHandleMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcHandleMgr.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcLayer.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcModel.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcModel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcModel2.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcShapeAttrib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcShapeAttrib.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcShapeAttribMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcShapeAttribMgr.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kcSnapMngr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kcSnapMngr.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kiSelSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kiSelSet.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kiSnapMngr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kiSnapMngr.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kiUndoMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kiUndoMgr.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kvCoordSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kvCoordSystem.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kvCoordSystemMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kvCoordSystemMgr.cpp -------------------------------------------------------------------------------- /QxModelLib/source/kvGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/source/kvGrid.cpp -------------------------------------------------------------------------------- /QxModelLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/stdafx.cpp -------------------------------------------------------------------------------- /QxModelLib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/targetver.h -------------------------------------------------------------------------------- /QxModelLib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/adler32.c -------------------------------------------------------------------------------- /QxModelLib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/compress.c -------------------------------------------------------------------------------- /QxModelLib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/crc32.c -------------------------------------------------------------------------------- /QxModelLib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/crc32.h -------------------------------------------------------------------------------- /QxModelLib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/deflate.c -------------------------------------------------------------------------------- /QxModelLib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/deflate.h -------------------------------------------------------------------------------- /QxModelLib/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/gzclose.c -------------------------------------------------------------------------------- /QxModelLib/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/gzguts.h -------------------------------------------------------------------------------- /QxModelLib/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/gzlib.c -------------------------------------------------------------------------------- /QxModelLib/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/gzread.c -------------------------------------------------------------------------------- /QxModelLib/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/gzwrite.c -------------------------------------------------------------------------------- /QxModelLib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/infback.c -------------------------------------------------------------------------------- /QxModelLib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inffast.c -------------------------------------------------------------------------------- /QxModelLib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inffast.h -------------------------------------------------------------------------------- /QxModelLib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inffixed.h -------------------------------------------------------------------------------- /QxModelLib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inflate.c -------------------------------------------------------------------------------- /QxModelLib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inflate.h -------------------------------------------------------------------------------- /QxModelLib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inftrees.c -------------------------------------------------------------------------------- /QxModelLib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/inftrees.h -------------------------------------------------------------------------------- /QxModelLib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/trees.c -------------------------------------------------------------------------------- /QxModelLib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/trees.h -------------------------------------------------------------------------------- /QxModelLib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/uncompr.c -------------------------------------------------------------------------------- /QxModelLib/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/zconf.h -------------------------------------------------------------------------------- /QxModelLib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/zlib.h -------------------------------------------------------------------------------- /QxModelLib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/zutil.c -------------------------------------------------------------------------------- /QxModelLib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxModelLib/zlib/zutil.h -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.def -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.h -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.rc -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.vcxproj -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.vcxproj.filters -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPlugin.vcxproj.user -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPluginApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPluginApp.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/QxSolidPluginApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/QxSolidPluginApp.h -------------------------------------------------------------------------------- /QxSolidPlugin/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/Resource.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidDeCompound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidDeCompound.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidDeCompound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidDeCompound.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidDraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidDraft.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidDraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidDraft.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidFillet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidFillet.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidFillet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidFillet.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidLoft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidLoft.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidLoft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidLoft.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidOffset.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidOffset.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidSewing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidSewing.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidSewing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidSewing.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidTrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidTrim.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmSolidTrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmSolidTrim.h -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmThickSolid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmThickSolid.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/edit/kcmThickSolid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/edit/kcmThickSolid.h -------------------------------------------------------------------------------- /QxSolidPlugin/kcmSolidBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/kcmSolidBoolean.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/kcmSolidBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/kcmSolidBoolean.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidBox.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidBox.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidCone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidCone.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidCone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidCone.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidCylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidCylinder.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidCylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidCylinder.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidPipe.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidPipe.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidPipeShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidPipeShell.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidPipeShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidPipeShell.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidPrism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidPrism.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidPrism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidPrism.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidRevol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidRevol.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidRevol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidRevol.h -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidSphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidSphere.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/make/kcmSolidSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/make/kcmSolidSphere.h -------------------------------------------------------------------------------- /QxSolidPlugin/res/QxSolidPlugin.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/res/QxSolidPlugin.rc2 -------------------------------------------------------------------------------- /QxSolidPlugin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/stdafx.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/stdafx.h -------------------------------------------------------------------------------- /QxSolidPlugin/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/targetver.h -------------------------------------------------------------------------------- /QxSolidPlugin/tools/kcmOneFaceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/tools/kcmOneFaceBase.cpp -------------------------------------------------------------------------------- /QxSolidPlugin/tools/kcmOneFaceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSolidPlugin/tools/kcmOneFaceBase.h -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmRegionBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmRegionBoolean.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmRegionBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmRegionBoolean.h -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceFilling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceFilling.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceFilling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceFilling.h -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceSplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceSplit.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceSplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceSplit.h -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceTool.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceTool.h -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceTrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceTrim.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Edit/kcmSurfaceTrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Edit/kcmSurfaceTrim.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmLoftSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmLoftSurface.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmLoftSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmLoftSurface.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmLoopToFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmLoopToFace.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmLoopToFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmLoopToFace.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmPlane.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmPlane.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmPrismSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmPrismSurface.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmPrismSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmPrismSurface.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmRevolSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmRevolSurface.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmRevolSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmRevolSurface.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmRuledSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmRuledSurface.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmRuledSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmRuledSurface.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmSurfPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmSurfPolygon.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmSurfPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmSurfPolygon.h -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmSurfacePipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmSurfacePipe.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/Make/kcmSurfacePipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Make/kcmSurfacePipe.h -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.def -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.h -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.rc -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.vcxproj -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.vcxproj.filters -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPlugin.vcxproj.user -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPluginApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPluginApp.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/QxSurfPluginApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/QxSurfPluginApp.h -------------------------------------------------------------------------------- /QxSurfPlugin/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/Resource.h -------------------------------------------------------------------------------- /QxSurfPlugin/res/QxSurfPlugin.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/res/QxSurfPlugin.rc2 -------------------------------------------------------------------------------- /QxSurfPlugin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/stdafx.cpp -------------------------------------------------------------------------------- /QxSurfPlugin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/stdafx.h -------------------------------------------------------------------------------- /QxSurfPlugin/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSurfPlugin/targetver.h -------------------------------------------------------------------------------- /QxSysLib/QxSysLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLib.def -------------------------------------------------------------------------------- /QxSysLib/QxSysLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLib.rc -------------------------------------------------------------------------------- /QxSysLib/QxSysLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLib.vcxproj -------------------------------------------------------------------------------- /QxSysLib/QxSysLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLib.vcxproj.filters -------------------------------------------------------------------------------- /QxSysLib/QxSysLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLib.vcxproj.user -------------------------------------------------------------------------------- /QxSysLib/QxSysLibApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLibApp.cpp -------------------------------------------------------------------------------- /QxSysLib/QxSysLibApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/QxSysLibApp.h -------------------------------------------------------------------------------- /QxSysLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/ReadMe.txt -------------------------------------------------------------------------------- /QxSysLib/include/Gui/AutoHideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/AutoHideBar.h -------------------------------------------------------------------------------- /QxSysLib/include/Gui/DrawFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/DrawFrame.h -------------------------------------------------------------------------------- /QxSysLib/include/Gui/PinDockBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/PinDockBar.h -------------------------------------------------------------------------------- /QxSysLib/include/Gui/XInputEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/XInputEdit.h -------------------------------------------------------------------------------- /QxSysLib/include/Gui/scbarcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/scbarcf.h -------------------------------------------------------------------------------- /QxSysLib/include/Gui/scbarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/scbarg.h -------------------------------------------------------------------------------- /QxSysLib/include/Gui/sizecbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Gui/sizecbar.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputAngle.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputDirTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputDirTool.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputEdit.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputEntityTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputEntityTool.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputLength.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputOptionsTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputOptionsTool.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputPicker.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputPoint.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputPointOnCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputPointOnCurve.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputPointTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputPointTool.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputTool.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputValueTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputValueTool.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiInputVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiInputVector.h -------------------------------------------------------------------------------- /QxSysLib/include/Input/kiOptionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/Input/kiOptionSet.h -------------------------------------------------------------------------------- /QxSysLib/include/QxAnimationShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxAnimationShape.h -------------------------------------------------------------------------------- /QxSysLib/include/QxCmdPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxCmdPlugin.h -------------------------------------------------------------------------------- /QxSysLib/include/QxCmdPluginImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxCmdPluginImpl.h -------------------------------------------------------------------------------- /QxSysLib/include/QxCommandItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxCommandItem.h -------------------------------------------------------------------------------- /QxSysLib/include/QxPluginMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxPluginMgr.h -------------------------------------------------------------------------------- /QxSysLib/include/QxStgDocDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxStgDocDef.h -------------------------------------------------------------------------------- /QxSysLib/include/QxStgDocReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxStgDocReader.h -------------------------------------------------------------------------------- /QxSysLib/include/QxStgDocWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxStgDocWriter.h -------------------------------------------------------------------------------- /QxSysLib/include/QxSysInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxSysInterface.h -------------------------------------------------------------------------------- /QxSysLib/include/QxSysLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxSysLib.h -------------------------------------------------------------------------------- /QxSysLib/include/QxWndTimerMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/QxWndTimerMgr.h -------------------------------------------------------------------------------- /QxSysLib/include/kcDispArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcDispArrow.h -------------------------------------------------------------------------------- /QxSysLib/include/kcDispObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcDispObj.h -------------------------------------------------------------------------------- /QxSysLib/include/kcDocContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcDocContext.h -------------------------------------------------------------------------------- /QxSysLib/include/kcPreviewObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcPreviewObj.h -------------------------------------------------------------------------------- /QxSysLib/include/kcPreviewText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcPreviewText.h -------------------------------------------------------------------------------- /QxSysLib/include/kcProgressThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcProgressThread.h -------------------------------------------------------------------------------- /QxSysLib/include/kcSysUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcSysUtils.h -------------------------------------------------------------------------------- /QxSysLib/include/kcgTextLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcgTextLib.h -------------------------------------------------------------------------------- /QxSysLib/include/kcmUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kcmUtils.h -------------------------------------------------------------------------------- /QxSysLib/include/kiCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kiCommand.h -------------------------------------------------------------------------------- /QxSysLib/include/kiCommandMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kiCommandMgr.h -------------------------------------------------------------------------------- /QxSysLib/include/kiParseString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/include/kiParseString.h -------------------------------------------------------------------------------- /QxSysLib/res/QxSysLib.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/res/QxSysLib.rc2 -------------------------------------------------------------------------------- /QxSysLib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/resource.h -------------------------------------------------------------------------------- /QxSysLib/source/Cmd/kcmUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Cmd/kcmUtils.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Cmd/kiCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Cmd/kiCommand.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Cmd/kiCommandMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Cmd/kiCommandMgr.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Disp/kcDispArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Disp/kcDispArrow.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Disp/kcDispObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Disp/kcDispObj.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Disp/kcPreviewObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Disp/kcPreviewObj.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Disp/kcPreviewObj2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Disp/kcPreviewObj2.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Disp/kcPreviewText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Disp/kcPreviewText.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/InputDblDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/InputDblDlg.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/InputDblDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/InputDblDlg.h -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/InputIntDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/InputIntDlg.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/InputIntDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/InputIntDlg.h -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/ShapeStructDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/ShapeStructDialog.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/ShapeStructDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/ShapeStructDialog.h -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/kuiProgressDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/kuiProgressDlg.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Dlgs/kuiProgressDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Dlgs/kuiProgressDlg.h -------------------------------------------------------------------------------- /QxSysLib/source/Geo/QxAnimationShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Geo/QxAnimationShape.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Geo/kcSysUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Geo/kcSysUtils.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Geo/kcgTextLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Geo/kcgTextLib.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/AutoHideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/AutoHideBar.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/DrawFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/DrawFrame.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/PinDockBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/PinDockBar.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/XInputEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/XInputEdit.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/scbarcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/scbarcf.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/scbarg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/scbarg.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Gui/sizecbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Gui/sizecbar.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputAngle.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputDirTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputDirTool.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputEdit.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputEntityTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputEntityTool.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputLength.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputOptionsTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputOptionsTool.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputPicker.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputPoint.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputPointOnCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputPointOnCurve.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputPointTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputPointTool.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputTool.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputValueTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputValueTool.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiInputVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiInputVector.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiOptionSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiOptionSet.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Input/kiParseString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Input/kiParseString.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Plugin/QxCmdPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Plugin/QxCmdPlugin.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Plugin/QxCmdPluginImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Plugin/QxCmdPluginImpl.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Plugin/QxCommandItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Plugin/QxCommandItem.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Plugin/QxPluginMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Plugin/QxPluginMgr.cpp -------------------------------------------------------------------------------- /QxSysLib/source/QxSysLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/QxSysLib.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Stg/QxStgDocReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Stg/QxStgDocReader.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Stg/QxStgDocWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Stg/QxStgDocWriter.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Sys/QxWndTimerMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Sys/QxWndTimerMgr.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Sys/kcDocContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Sys/kcDocContext.cpp -------------------------------------------------------------------------------- /QxSysLib/source/Sys/kcProgressThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/source/Sys/kcProgressThread.cpp -------------------------------------------------------------------------------- /QxSysLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/stdafx.cpp -------------------------------------------------------------------------------- /QxSysLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/stdafx.h -------------------------------------------------------------------------------- /QxSysLib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxSysLib/targetver.h -------------------------------------------------------------------------------- /QxToolPlugin/Dialogs/kcPropertyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dialogs/kcPropertyDlg.cpp -------------------------------------------------------------------------------- /QxToolPlugin/Dialogs/kcPropertyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dialogs/kcPropertyDlg.h -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmAngleDim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmAngleDim.cpp -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmAngleDim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmAngleDim.h -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmDiameterDim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmDiameterDim.cpp -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmDiameterDim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmDiameterDim.h -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmLengthDimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmLengthDimension.cpp -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmLengthDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmLengthDimension.h -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmRadiusDim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmRadiusDim.cpp -------------------------------------------------------------------------------- /QxToolPlugin/Dim/kcmRadiusDim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Dim/kcmRadiusDim.h -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.cpp -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.def -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.h -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.rc -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.vcxproj -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.vcxproj.filters -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPlugin.vcxproj.user -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPluginApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPluginApp.cpp -------------------------------------------------------------------------------- /QxToolPlugin/QxToolPluginApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/QxToolPluginApp.h -------------------------------------------------------------------------------- /QxToolPlugin/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/Resource.h -------------------------------------------------------------------------------- /QxToolPlugin/analyze/kcmShapeProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/analyze/kcmShapeProperty.cpp -------------------------------------------------------------------------------- /QxToolPlugin/analyze/kcmShapeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/analyze/kcmShapeProperty.h -------------------------------------------------------------------------------- /QxToolPlugin/analyze/kcmShapeStatistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/analyze/kcmShapeStatistic.cpp -------------------------------------------------------------------------------- /QxToolPlugin/analyze/kcmShapeStatistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/analyze/kcmShapeStatistic.h -------------------------------------------------------------------------------- /QxToolPlugin/kcmAnimationDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmAnimationDemo.cpp -------------------------------------------------------------------------------- /QxToolPlugin/kcmAnimationDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmAnimationDemo.h -------------------------------------------------------------------------------- /QxToolPlugin/kcmBasePlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmBasePlane.cpp -------------------------------------------------------------------------------- /QxToolPlugin/kcmBasePlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmBasePlane.h -------------------------------------------------------------------------------- /QxToolPlugin/kcmDispColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmDispColor.cpp -------------------------------------------------------------------------------- /QxToolPlugin/kcmDispColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmDispColor.h -------------------------------------------------------------------------------- /QxToolPlugin/kcmDispShadingModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmDispShadingModel.cpp -------------------------------------------------------------------------------- /QxToolPlugin/kcmDispShadingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmDispShadingModel.h -------------------------------------------------------------------------------- /QxToolPlugin/kcmShapeCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmShapeCheck.cpp -------------------------------------------------------------------------------- /QxToolPlugin/kcmShapeCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmShapeCheck.h -------------------------------------------------------------------------------- /QxToolPlugin/kcmShapeFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmShapeFix.cpp -------------------------------------------------------------------------------- /QxToolPlugin/kcmShapeFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/kcmShapeFix.h -------------------------------------------------------------------------------- /QxToolPlugin/res/QxToolPlugin.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/res/QxToolPlugin.rc2 -------------------------------------------------------------------------------- /QxToolPlugin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/stdafx.cpp -------------------------------------------------------------------------------- /QxToolPlugin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/stdafx.h -------------------------------------------------------------------------------- /QxToolPlugin/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/QxToolPlugin/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/README.md -------------------------------------------------------------------------------- /Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/Release.zip -------------------------------------------------------------------------------- /bin/x64/release/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/bin/x64/release/Release.zip -------------------------------------------------------------------------------- /luaLib/LuaLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/LuaLib.vcxproj -------------------------------------------------------------------------------- /luaLib/LuaLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/LuaLib.vcxproj.filters -------------------------------------------------------------------------------- /luaLib/LuaLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/LuaLib.vcxproj.user -------------------------------------------------------------------------------- /luaLib/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lapi.c -------------------------------------------------------------------------------- /luaLib/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lapi.h -------------------------------------------------------------------------------- /luaLib/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lauxlib.c -------------------------------------------------------------------------------- /luaLib/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lauxlib.h -------------------------------------------------------------------------------- /luaLib/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lbaselib.c -------------------------------------------------------------------------------- /luaLib/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lbitlib.c -------------------------------------------------------------------------------- /luaLib/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lcode.c -------------------------------------------------------------------------------- /luaLib/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lcode.h -------------------------------------------------------------------------------- /luaLib/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lcorolib.c -------------------------------------------------------------------------------- /luaLib/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lctype.c -------------------------------------------------------------------------------- /luaLib/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lctype.h -------------------------------------------------------------------------------- /luaLib/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ldblib.c -------------------------------------------------------------------------------- /luaLib/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ldebug.c -------------------------------------------------------------------------------- /luaLib/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ldebug.h -------------------------------------------------------------------------------- /luaLib/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ldo.c -------------------------------------------------------------------------------- /luaLib/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ldo.h -------------------------------------------------------------------------------- /luaLib/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ldump.c -------------------------------------------------------------------------------- /luaLib/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lfunc.c -------------------------------------------------------------------------------- /luaLib/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lfunc.h -------------------------------------------------------------------------------- /luaLib/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lgc.c -------------------------------------------------------------------------------- /luaLib/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lgc.h -------------------------------------------------------------------------------- /luaLib/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/linit.c -------------------------------------------------------------------------------- /luaLib/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/liolib.c -------------------------------------------------------------------------------- /luaLib/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/llex.c -------------------------------------------------------------------------------- /luaLib/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/llex.h -------------------------------------------------------------------------------- /luaLib/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/llimits.h -------------------------------------------------------------------------------- /luaLib/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lmathlib.c -------------------------------------------------------------------------------- /luaLib/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lmem.c -------------------------------------------------------------------------------- /luaLib/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lmem.h -------------------------------------------------------------------------------- /luaLib/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/loadlib.c -------------------------------------------------------------------------------- /luaLib/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lobject.c -------------------------------------------------------------------------------- /luaLib/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lobject.h -------------------------------------------------------------------------------- /luaLib/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lopcodes.c -------------------------------------------------------------------------------- /luaLib/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lopcodes.h -------------------------------------------------------------------------------- /luaLib/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/loslib.c -------------------------------------------------------------------------------- /luaLib/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lparser.c -------------------------------------------------------------------------------- /luaLib/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lparser.h -------------------------------------------------------------------------------- /luaLib/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lprefix.h -------------------------------------------------------------------------------- /luaLib/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lstate.c -------------------------------------------------------------------------------- /luaLib/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lstate.h -------------------------------------------------------------------------------- /luaLib/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lstring.c -------------------------------------------------------------------------------- /luaLib/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lstring.h -------------------------------------------------------------------------------- /luaLib/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lstrlib.c -------------------------------------------------------------------------------- /luaLib/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ltable.c -------------------------------------------------------------------------------- /luaLib/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ltable.h -------------------------------------------------------------------------------- /luaLib/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ltablib.c -------------------------------------------------------------------------------- /luaLib/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ltm.c -------------------------------------------------------------------------------- /luaLib/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/ltm.h -------------------------------------------------------------------------------- /luaLib/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lua.h -------------------------------------------------------------------------------- /luaLib/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lua.hpp -------------------------------------------------------------------------------- /luaLib/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/luaconf.h -------------------------------------------------------------------------------- /luaLib/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lualib.h -------------------------------------------------------------------------------- /luaLib/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lundump.c -------------------------------------------------------------------------------- /luaLib/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lundump.h -------------------------------------------------------------------------------- /luaLib/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lutf8lib.c -------------------------------------------------------------------------------- /luaLib/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lvm.c -------------------------------------------------------------------------------- /luaLib/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lvm.h -------------------------------------------------------------------------------- /luaLib/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lzio.c -------------------------------------------------------------------------------- /luaLib/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happytik/OcctLab/HEAD/luaLib/lzio.h --------------------------------------------------------------------------------