mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-22 17:50:33 +05:00
Mantis issue 0021465: EDF 2067 GEOM: Extrusion along a path leads to a self-intersected shape. A fix by Peter Kurnev for GlueFaces algo.
This commit is contained in:
parent
47447fe1fa
commit
aa829b078e
@ -18,12 +18,10 @@
|
|||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
//
|
|
||||||
// File: GEOMAlgo_Gluer2_1.cxx
|
// File: GEOMAlgo_Gluer2_1.cxx
|
||||||
// Created:
|
|
||||||
// Author: Peter KURNEV
|
// Author: Peter KURNEV
|
||||||
// <peter@PREFEX>
|
|
||||||
//
|
|
||||||
#include <GEOMAlgo_Gluer2.hxx>
|
#include <GEOMAlgo_Gluer2.hxx>
|
||||||
|
|
||||||
#include <gp_XYZ.hxx>
|
#include <gp_XYZ.hxx>
|
||||||
@ -58,7 +56,6 @@
|
|||||||
|
|
||||||
#include <GEOMAlgo_Tools.hxx>
|
#include <GEOMAlgo_Tools.hxx>
|
||||||
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : MakeBRepShapes
|
//function : MakeBRepShapes
|
||||||
//purpose :
|
//purpose :
|
||||||
@ -100,6 +97,7 @@ void GEOMAlgo_Gluer2::MakeFace(const TopoDS_Face& theF,
|
|||||||
TopoDS_Face& theFnew)
|
TopoDS_Face& theFnew)
|
||||||
{
|
{
|
||||||
Standard_Boolean bIsToReverse, bIsUPeriodic;
|
Standard_Boolean bIsToReverse, bIsUPeriodic;
|
||||||
|
Standard_Integer iRet;
|
||||||
Standard_Real aTol, aUMin, aUMax, aVMin, aVMax;
|
Standard_Real aTol, aUMin, aUMax, aVMin, aVMax;
|
||||||
TopAbs_Orientation aOrE;
|
TopAbs_Orientation aOrE;
|
||||||
Handle(Geom_Surface) aS;
|
Handle(Geom_Surface) aS;
|
||||||
@ -164,7 +162,14 @@ void GEOMAlgo_Gluer2::MakeFace(const TopoDS_Face& theF,
|
|||||||
if (bIsUPeriodic) {
|
if (bIsUPeriodic) {
|
||||||
GEOMAlgo_Tools::RefinePCurveForEdgeOnFace(aEx, aFF, aUMin, aUMax);
|
GEOMAlgo_Tools::RefinePCurveForEdgeOnFace(aEx, aFF, aUMin, aUMax);
|
||||||
}
|
}
|
||||||
BOPTools_Tools2D::BuildPCurveForEdgeOnFace(aEx, aFF);
|
//
|
||||||
|
//modified by NIZNHY-PKV Fri Feb 03 11:18:17 2012f
|
||||||
|
iRet=GEOMAlgo_Tools::BuildPCurveForEdgeOnFace(aE, aEx, aFF, myContext);
|
||||||
|
if (iRet) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
//BOPTools_Tools2D::BuildPCurveForEdgeOnFace(aEx, aFF);
|
||||||
|
//modified by NIZNHY-PKV Fri Feb 03 11:18:20 2012t
|
||||||
//
|
//
|
||||||
bIsToReverse=BOPTools_Tools3D::IsSplitToReverse1(aEx, aE, myContext);
|
bIsToReverse=BOPTools_Tools3D::IsSplitToReverse1(aEx, aE, myContext);
|
||||||
if (bIsToReverse) {
|
if (bIsToReverse) {
|
||||||
@ -224,9 +229,7 @@ void GEOMAlgo_Gluer2::MakeEdge(const TopoDS_Edge& aE,
|
|||||||
Standard_Real aTol;
|
Standard_Real aTol;
|
||||||
BRep_Builder aBB;
|
BRep_Builder aBB;
|
||||||
TopoDS_Edge E;
|
TopoDS_Edge E;
|
||||||
//TopAbs_Orientation anOrE;
|
|
||||||
//
|
//
|
||||||
//anOrE=aE.Orientation();
|
|
||||||
aTol=BRep_Tool::Tolerance(aE);
|
aTol=BRep_Tool::Tolerance(aE);
|
||||||
//
|
//
|
||||||
E=aEx;
|
E=aEx;
|
||||||
|
@ -18,11 +18,11 @@
|
|||||||
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
--
|
--
|
||||||
-- See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
-- See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
--
|
|
||||||
-- File: GEOMAlgo_Tools.cdl
|
-- File: GEOMAlgo_Tools.cdl
|
||||||
-- Created: Mon Dec 6 11:26:02 2004
|
-- Created: Mon Dec 6 11:26:02 2004
|
||||||
-- Author: Peter KURNEV
|
-- Author: Peter KURNEV
|
||||||
--
|
|
||||||
class Tools from GEOMAlgo
|
class Tools from GEOMAlgo
|
||||||
|
|
||||||
---Purpose:
|
---Purpose:
|
||||||
@ -110,6 +110,16 @@ is
|
|||||||
CorrectWires(myclass;
|
CorrectWires(myclass;
|
||||||
aS :Shape from TopoDS)
|
aS :Shape from TopoDS)
|
||||||
returns Boolean from Standard;
|
returns Boolean from Standard;
|
||||||
|
|
||||||
|
--modified by NIZNHY-PKV Mon Feb 06 06:59:14 2012f
|
||||||
|
BuildPCurveForEdgeOnFace (myclass;
|
||||||
|
aE : Edge from TopoDS;
|
||||||
|
aEold: Edge from TopoDS;
|
||||||
|
aF : Face from TopoDS;
|
||||||
|
aCtx :out Context from IntTools)
|
||||||
|
returns Integer from Standard;
|
||||||
|
--modified by NIZNHY-PKV Mon Feb 06 06:59:22 2012t
|
||||||
|
|
||||||
--fields
|
--fields
|
||||||
|
|
||||||
end Tools;
|
end Tools;
|
||||||
|
@ -25,15 +25,22 @@
|
|||||||
|
|
||||||
#include <GEOMAlgo_Tools.ixx>
|
#include <GEOMAlgo_Tools.ixx>
|
||||||
|
|
||||||
|
#include <gp.hxx>
|
||||||
#include <gp_Pnt.hxx>
|
#include <gp_Pnt.hxx>
|
||||||
#include <gp_Pnt2d.hxx>
|
#include <gp_Pnt2d.hxx>
|
||||||
|
#include <gp_Vec2d.hxx>
|
||||||
|
#include <gp_Dir2d.hxx>
|
||||||
|
|
||||||
#include <Geom_Surface.hxx>
|
|
||||||
#include <Geom_Curve.hxx>
|
|
||||||
#include <Geom2d_Curve.hxx>
|
#include <Geom2d_Curve.hxx>
|
||||||
|
#include <Geom2d_TrimmedCurve.hxx>
|
||||||
|
|
||||||
|
#include <Geom_Curve.hxx>
|
||||||
|
#include <Geom_Surface.hxx>
|
||||||
|
|
||||||
#include <GeomAdaptor_Surface.hxx>
|
#include <GeomAdaptor_Surface.hxx>
|
||||||
|
|
||||||
#include <GeomAPI_ProjectPointOnSurf.hxx>
|
#include <GeomAPI_ProjectPointOnSurf.hxx>
|
||||||
|
#include <GeomAPI_ProjectPointOnCurve.hxx>
|
||||||
|
|
||||||
#include <TopAbs_ShapeEnum.hxx>
|
#include <TopAbs_ShapeEnum.hxx>
|
||||||
|
|
||||||
@ -53,8 +60,8 @@
|
|||||||
#include <BOPTools_Tools2D.hxx>
|
#include <BOPTools_Tools2D.hxx>
|
||||||
#include <IntTools_Context.hxx>
|
#include <IntTools_Context.hxx>
|
||||||
|
|
||||||
#include <GEOMAlgo_PassKeyShape.hxx>//qft
|
#include <GEOMAlgo_PassKeyShape.hxx>
|
||||||
#include <GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape.hxx>//qft
|
#include <GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape.hxx>
|
||||||
|
|
||||||
static
|
static
|
||||||
void GetCount(const TopoDS_Shape& aS,
|
void GetCount(const TopoDS_Shape& aS,
|
||||||
@ -471,3 +478,135 @@ Standard_Boolean GEOMAlgo_Tools::IsUPeriodic(const Handle(Geom_Surface) &aS)
|
|||||||
//
|
//
|
||||||
return bRet;
|
return bRet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//modified by NIZNHY-PKV Fri Feb 03 11:16:35 2012f
|
||||||
|
//=======================================================================
|
||||||
|
//function : BuildPCurveForEdgeOnFace
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_Integer
|
||||||
|
GEOMAlgo_Tools::BuildPCurveForEdgeOnFace(const TopoDS_Edge& aEold,
|
||||||
|
const TopoDS_Edge& aEnew,
|
||||||
|
const TopoDS_Face& aF,
|
||||||
|
IntTools_Context& aCtx)
|
||||||
|
{
|
||||||
|
Standard_Boolean bIsClosed, bUClosed, bHasOld;
|
||||||
|
Standard_Integer iRet, aNbPoints;
|
||||||
|
Standard_Real aTS, aTS1, aTS2, aT, aT1, aT2, aScPr, aTol;
|
||||||
|
Standard_Real aU, aV, aUS1, aVS1, aUS2, aVS2;
|
||||||
|
gp_Pnt aP;
|
||||||
|
gp_Pnt2d aP2DS1, aP2DS2, aP2D;
|
||||||
|
gp_Vec2d aV2DS1, aV2DS2;
|
||||||
|
Handle(Geom2d_Curve) aC2D, aC2DS1, aC2DS2;
|
||||||
|
Handle(Geom_Surface) aS;
|
||||||
|
TopoDS_Edge aES;
|
||||||
|
//
|
||||||
|
iRet=0;
|
||||||
|
//
|
||||||
|
bHasOld=BOPTools_Tools2D::HasCurveOnSurface(aEnew, aF, aC2D, aT1, aT2, aTol);
|
||||||
|
if (bHasOld) {
|
||||||
|
return iRet;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
BOPTools_Tools2D::BuildPCurveForEdgeOnFace(aEnew, aF);
|
||||||
|
aC2D=BRep_Tool::CurveOnSurface(aEnew, aF, aT1, aT2);
|
||||||
|
if (aC2D.IsNull()){
|
||||||
|
iRet=1;
|
||||||
|
return iRet;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
bIsClosed=BRep_Tool::IsClosed(aEold, aF);
|
||||||
|
if (!bIsClosed) {
|
||||||
|
return iRet;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
aTol=1.e-7;
|
||||||
|
//
|
||||||
|
// 1. bUClosed - direction of closeness
|
||||||
|
//
|
||||||
|
aES=aEold;
|
||||||
|
aES.Orientation(TopAbs_FORWARD);
|
||||||
|
aC2DS1=BRep_Tool::CurveOnSurface(aES, aF, aTS1, aTS2);
|
||||||
|
//
|
||||||
|
aES.Orientation(TopAbs_REVERSED);
|
||||||
|
aC2DS2=BRep_Tool::CurveOnSurface(aES, aF, aTS1, aTS2);
|
||||||
|
//
|
||||||
|
aTS=BOPTools_Tools2D::IntermediatePoint(aTS1, aTS2);
|
||||||
|
//
|
||||||
|
aC2DS1->D1(aTS, aP2DS1, aV2DS1);
|
||||||
|
aC2DS2->D1(aTS, aP2DS2, aV2DS2);
|
||||||
|
//
|
||||||
|
gp_Vec2d aV2DS12(aP2DS1, aP2DS2);
|
||||||
|
gp_Dir2d aD2DS12(aV2DS12);
|
||||||
|
const gp_Dir2d& aD2DX=gp::DX2d();
|
||||||
|
//
|
||||||
|
aScPr=aD2DS12*aD2DX;
|
||||||
|
bUClosed=Standard_True;
|
||||||
|
if (fabs(aScPr) < aTol) {
|
||||||
|
bUClosed=!bUClosed;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
// 2. aP2D - point on curve aC2D, that corresponds to aP2DS1
|
||||||
|
aP2DS1.Coord(aUS1, aVS1);
|
||||||
|
aP2DS2.Coord(aUS2, aVS2);
|
||||||
|
//
|
||||||
|
aS=BRep_Tool::Surface(aF);
|
||||||
|
aS->D0(aUS1, aVS1, aP);
|
||||||
|
//
|
||||||
|
GeomAPI_ProjectPointOnCurve& aProjPC=aCtx.ProjPC(aEnew);
|
||||||
|
//
|
||||||
|
aProjPC.Perform(aP);
|
||||||
|
aNbPoints=aProjPC.NbPoints();
|
||||||
|
if (!aNbPoints) {
|
||||||
|
iRet=2;
|
||||||
|
return iRet;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
aT=aProjPC.LowerDistanceParameter();
|
||||||
|
|
||||||
|
//
|
||||||
|
// 3. Build the second 2D curve
|
||||||
|
Standard_Boolean bRevOrder;
|
||||||
|
gp_Vec2d aV2DT, aV2D;
|
||||||
|
Handle(Geom2d_Curve) aC2Dnew;
|
||||||
|
Handle(Geom2d_TrimmedCurve) aC2DTnew;
|
||||||
|
BRep_Builder aBB;
|
||||||
|
//
|
||||||
|
aC2D->D1(aT, aP2D, aV2D);
|
||||||
|
aP2D.Coord(aU, aV);
|
||||||
|
//
|
||||||
|
aC2Dnew=Handle(Geom2d_Curve)::DownCast(aC2D->Copy());
|
||||||
|
aC2DTnew = new Geom2d_TrimmedCurve(aC2Dnew, aT1, aT2);
|
||||||
|
//
|
||||||
|
aV2DT=aV2DS12;
|
||||||
|
if (!bUClosed) { // V Closed
|
||||||
|
if (fabs(aV-aVS2)<aTol) {
|
||||||
|
aV2DT.Reverse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else { // U Closed
|
||||||
|
if (fabs(aU-aUS2)<aTol) {
|
||||||
|
aV2DT.Reverse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//
|
||||||
|
aC2DTnew->Translate(aV2DT);
|
||||||
|
//
|
||||||
|
// 4 Order the 2D curves
|
||||||
|
bRevOrder=Standard_False;
|
||||||
|
aScPr=aV2D*aV2DS1;
|
||||||
|
if(aScPr<0.) {
|
||||||
|
bRevOrder=!bRevOrder;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
// 5. Update the edge
|
||||||
|
aTol=BRep_Tool::Tolerance(aEnew);
|
||||||
|
if (!bRevOrder) {
|
||||||
|
aBB.UpdateEdge(aEnew, aC2D, aC2DTnew, aF, aTol);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
aBB.UpdateEdge(aEnew, aC2DTnew, aC2D , aF, aTol);
|
||||||
|
}
|
||||||
|
//
|
||||||
|
return iRet;
|
||||||
|
}
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
//
|
|
||||||
|
|
||||||
#ifndef _GEOMAlgo_Tools_HeaderFile
|
#ifndef _GEOMAlgo_Tools_HeaderFile
|
||||||
#define _GEOMAlgo_Tools_HeaderFile
|
#define _GEOMAlgo_Tools_HeaderFile
|
||||||
@ -35,6 +34,7 @@
|
|||||||
#ifndef _Handle_Geom_Surface_HeaderFile
|
#ifndef _Handle_Geom_Surface_HeaderFile
|
||||||
#include <Handle_Geom_Surface.hxx>
|
#include <Handle_Geom_Surface.hxx>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class TopoDS_Shape;
|
class TopoDS_Shape;
|
||||||
class GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape;
|
class GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape;
|
||||||
class IntTools_Context;
|
class IntTools_Context;
|
||||||
@ -45,7 +45,6 @@ class TopoDS_Edge;
|
|||||||
class TopoDS_Face;
|
class TopoDS_Face;
|
||||||
class Geom_Surface;
|
class Geom_Surface;
|
||||||
|
|
||||||
|
|
||||||
#ifndef _Standard_HeaderFile
|
#ifndef _Standard_HeaderFile
|
||||||
#include <Standard.hxx>
|
#include <Standard.hxx>
|
||||||
#endif
|
#endif
|
||||||
@ -70,49 +69,37 @@ public:
|
|||||||
{
|
{
|
||||||
if (anAddress) Standard::Free((Standard_Address&)anAddress);
|
if (anAddress) Standard::Free((Standard_Address&)anAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Methods PUBLIC
|
// Methods PUBLIC
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Boolean IsCompositeShape(const TopoDS_Shape& aS) ;
|
Standard_EXPORT static Standard_Boolean IsCompositeShape(const TopoDS_Shape& aS) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Integer RefineSDShapes(GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape& aMSD,const Standard_Real aTol,IntTools_Context& aCtx) ;
|
Standard_EXPORT static Standard_Integer RefineSDShapes(GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape& aMSD,const Standard_Real aTol,IntTools_Context& aCtx) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Integer FindSDShapes(const TopTools_ListOfShape& aLE,const Standard_Real aTol,TopTools_IndexedDataMapOfShapeListOfShape& aMEE,IntTools_Context& aCtx) ;
|
Standard_EXPORT static Standard_Integer FindSDShapes(const TopTools_ListOfShape& aLE,const Standard_Real aTol,TopTools_IndexedDataMapOfShapeListOfShape& aMEE,IntTools_Context& aCtx) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Integer FindSDShapes(const TopoDS_Shape& aE1,const TopTools_ListOfShape& aLE,const Standard_Real aTol,TopTools_ListOfShape& aLESD,IntTools_Context& aCtx) ;
|
Standard_EXPORT static Standard_Integer FindSDShapes(const TopoDS_Shape& aE1,const TopTools_ListOfShape& aLE,const Standard_Real aTol,TopTools_ListOfShape& aLESD,IntTools_Context& aCtx) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Boolean ProjectPointOnShape(const gp_Pnt& aP1,const TopoDS_Shape& aS,gp_Pnt& aP2,IntTools_Context& aCtx) ;
|
Standard_EXPORT static Standard_Boolean ProjectPointOnShape(const gp_Pnt& aP1,const TopoDS_Shape& aS,gp_Pnt& aP2,IntTools_Context& aCtx) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static void PointOnShape(const TopoDS_Shape& aS,gp_Pnt& aP3D) ;
|
Standard_EXPORT static void PointOnShape(const TopoDS_Shape& aS,gp_Pnt& aP3D) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static void PointOnEdge(const TopoDS_Edge& aE,gp_Pnt& aP3D) ;
|
Standard_EXPORT static void PointOnEdge(const TopoDS_Edge& aE,gp_Pnt& aP3D) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static void PointOnEdge(const TopoDS_Edge& aE,const Standard_Real aT,gp_Pnt& aP3D) ;
|
Standard_EXPORT static void PointOnEdge(const TopoDS_Edge& aE,const Standard_Real aT,gp_Pnt& aP3D) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static void PointOnFace(const TopoDS_Face& aF,gp_Pnt& aP3D) ;
|
Standard_EXPORT static void PointOnFace(const TopoDS_Face& aF,gp_Pnt& aP3D) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static void PointOnFace(const TopoDS_Face& aF,const Standard_Real aU,const Standard_Real aV,gp_Pnt& aP3D) ;
|
Standard_EXPORT static void PointOnFace(const TopoDS_Face& aF,const Standard_Real aU,const Standard_Real aV,gp_Pnt& aP3D) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static void RefinePCurveForEdgeOnFace(const TopoDS_Edge& aE,const TopoDS_Face& aF,const Standard_Real aU1,const Standard_Real aU2) ;
|
Standard_EXPORT static void RefinePCurveForEdgeOnFace(const TopoDS_Edge& aE,const TopoDS_Face& aF,const Standard_Real aU1,const Standard_Real aU2) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Boolean IsUPeriodic(const Handle(Geom_Surface)& aS) ;
|
Standard_EXPORT static Standard_Boolean IsUPeriodic(const Handle(Geom_Surface)& aS) ;
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT static Standard_Boolean CorrectWires(const TopoDS_Shape& aS) ;
|
Standard_EXPORT static Standard_Boolean CorrectWires(const TopoDS_Shape& aS) ;
|
||||||
|
|
||||||
|
Standard_EXPORT static Standard_Integer BuildPCurveForEdgeOnFace(const TopoDS_Edge& aE,const TopoDS_Edge& aEold,const TopoDS_Face& aF,IntTools_Context& aCtx) ;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -143,7 +130,6 @@ private:
|
|||||||
|
|
||||||
|
|
||||||
// other Inline functions and methods (like "C++: function call" methods)
|
// other Inline functions and methods (like "C++: function call" methods)
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user