How to delete unnecessary dot?












4















documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle(0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstTriangle[PointSymbol=none,%% <<---
linecolor=blue,linewidth=1.5pslinewidth](1.5,-1){A}(0,1){B}(-1,-.5){C}
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



A new problem.



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
psset{unit=3cm}
begin{pspicture}(2,2)

%{psset{PointSymbolA=none,PointSymbolB=none,PointName=none}
{
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation{D}{B}{C}[C1] % phep tinh tien
pstTranslation{B}{D}{C}[C2]
pstInterLC{C1}{C2}{C}{B}{M1}{M2} % giao diem duong tron va duong thang
pstInterLC{A}{C1}{A}{M1}{M3}{M4}
pstInterLC{A}{C2}{A}{M2}{M5}{M6}
%psGetDistanceAB(A)(M2){MW} get 1.73205
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
}
psdot*(1,1)
end{pspicture}
end{document}


enter image description hereenter image description here



 documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
pstGeonode[PointSymbol=none,PointName={B,C,none},PosAngle={-110,-80}](0,0){B}(7,0){C}(-1,0){Z}(5,0){Y}
pstInterCC[PointSymbol=none,PosAngleA=90]{B}{Y}{C}{Z}{A}{M2} %%<<<---
pspolygon(B)(A)(C)
end{pspicture}
end{document}


With ver 1.61 it produces:



enter image description here



With ver 1.63 it produces:



enter image description here










share|improve this question

























  • @jfbu, the OP refers to the black bullet indicating the intersection.

    – Sigur
    Jan 26 at 15:42











  • The Section 3.6 from pst-eucl documentation shows the same problem. Looks like a bug?

    – Sigur
    Jan 26 at 15:47











  • One way it to pass none to each point: pstTriangle[PointSymbolC=none,PointSymbolA=none,PointSymbolB=none](0,4){C}(0,0){A}(3,0){B}

    – Sigur
    Jan 26 at 15:50






  • 1





    Only the first point in the list of the three for the triangle has to be set additionally to none: PointSymbolA=none. And it makes no difference if your first point is named C

    – Herbert
    Jan 27 at 7:01








  • 1





    @Herbert yes, I loaded pstInterCC normally....

    – chishimutoji
    Jan 31 at 11:11
















4















documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle(0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstTriangle[PointSymbol=none,%% <<---
linecolor=blue,linewidth=1.5pslinewidth](1.5,-1){A}(0,1){B}(-1,-.5){C}
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



A new problem.



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
psset{unit=3cm}
begin{pspicture}(2,2)

%{psset{PointSymbolA=none,PointSymbolB=none,PointName=none}
{
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation{D}{B}{C}[C1] % phep tinh tien
pstTranslation{B}{D}{C}[C2]
pstInterLC{C1}{C2}{C}{B}{M1}{M2} % giao diem duong tron va duong thang
pstInterLC{A}{C1}{A}{M1}{M3}{M4}
pstInterLC{A}{C2}{A}{M2}{M5}{M6}
%psGetDistanceAB(A)(M2){MW} get 1.73205
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
}
psdot*(1,1)
end{pspicture}
end{document}


enter image description hereenter image description here



 documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
pstGeonode[PointSymbol=none,PointName={B,C,none},PosAngle={-110,-80}](0,0){B}(7,0){C}(-1,0){Z}(5,0){Y}
pstInterCC[PointSymbol=none,PosAngleA=90]{B}{Y}{C}{Z}{A}{M2} %%<<<---
pspolygon(B)(A)(C)
end{pspicture}
end{document}


With ver 1.61 it produces:



enter image description here



With ver 1.63 it produces:



enter image description here










share|improve this question

























  • @jfbu, the OP refers to the black bullet indicating the intersection.

    – Sigur
    Jan 26 at 15:42











  • The Section 3.6 from pst-eucl documentation shows the same problem. Looks like a bug?

    – Sigur
    Jan 26 at 15:47











  • One way it to pass none to each point: pstTriangle[PointSymbolC=none,PointSymbolA=none,PointSymbolB=none](0,4){C}(0,0){A}(3,0){B}

    – Sigur
    Jan 26 at 15:50






  • 1





    Only the first point in the list of the three for the triangle has to be set additionally to none: PointSymbolA=none. And it makes no difference if your first point is named C

    – Herbert
    Jan 27 at 7:01








  • 1





    @Herbert yes, I loaded pstInterCC normally....

    – chishimutoji
    Jan 31 at 11:11














4












4








4








documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle(0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstTriangle[PointSymbol=none,%% <<---
linecolor=blue,linewidth=1.5pslinewidth](1.5,-1){A}(0,1){B}(-1,-.5){C}
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



A new problem.



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
psset{unit=3cm}
begin{pspicture}(2,2)

%{psset{PointSymbolA=none,PointSymbolB=none,PointName=none}
{
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation{D}{B}{C}[C1] % phep tinh tien
pstTranslation{B}{D}{C}[C2]
pstInterLC{C1}{C2}{C}{B}{M1}{M2} % giao diem duong tron va duong thang
pstInterLC{A}{C1}{A}{M1}{M3}{M4}
pstInterLC{A}{C2}{A}{M2}{M5}{M6}
%psGetDistanceAB(A)(M2){MW} get 1.73205
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
}
psdot*(1,1)
end{pspicture}
end{document}


enter image description hereenter image description here



 documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
pstGeonode[PointSymbol=none,PointName={B,C,none},PosAngle={-110,-80}](0,0){B}(7,0){C}(-1,0){Z}(5,0){Y}
pstInterCC[PointSymbol=none,PosAngleA=90]{B}{Y}{C}{Z}{A}{M2} %%<<<---
pspolygon(B)(A)(C)
end{pspicture}
end{document}


With ver 1.61 it produces:



enter image description here



With ver 1.63 it produces:



enter image description here










share|improve this question
















documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle(0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstTriangle[PointSymbol=none,%% <<---
linecolor=blue,linewidth=1.5pslinewidth](1.5,-1){A}(0,1){B}(-1,-.5){C}
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}
end{document}


enter image description here



A new problem.



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
psset{unit=3cm}
begin{pspicture}(2,2)

%{psset{PointSymbolA=none,PointSymbolB=none,PointName=none}
{
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation{D}{B}{C}[C1] % phep tinh tien
pstTranslation{B}{D}{C}[C2]
pstInterLC{C1}{C2}{C}{B}{M1}{M2} % giao diem duong tron va duong thang
pstInterLC{A}{C1}{A}{M1}{M3}{M4}
pstInterLC{A}{C2}{A}{M2}{M5}{M6}
%psGetDistanceAB(A)(M2){MW} get 1.73205
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
}
psdot*(1,1)
end{pspicture}
end{document}


enter image description hereenter image description here



 documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
pstGeonode[PointSymbol=none,PointName={B,C,none},PosAngle={-110,-80}](0,0){B}(7,0){C}(-1,0){Z}(5,0){Y}
pstInterCC[PointSymbol=none,PosAngleA=90]{B}{Y}{C}{Z}{A}{M2} %%<<<---
pspolygon(B)(A)(C)
end{pspicture}
end{document}


With ver 1.61 it produces:



enter image description here



With ver 1.63 it produces:



enter image description here







pstricks pst-eucl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 3 at 9:18







chishimutoji

















asked Jan 26 at 14:38









chishimutojichishimutoji

8301320




8301320













  • @jfbu, the OP refers to the black bullet indicating the intersection.

    – Sigur
    Jan 26 at 15:42











  • The Section 3.6 from pst-eucl documentation shows the same problem. Looks like a bug?

    – Sigur
    Jan 26 at 15:47











  • One way it to pass none to each point: pstTriangle[PointSymbolC=none,PointSymbolA=none,PointSymbolB=none](0,4){C}(0,0){A}(3,0){B}

    – Sigur
    Jan 26 at 15:50






  • 1





    Only the first point in the list of the three for the triangle has to be set additionally to none: PointSymbolA=none. And it makes no difference if your first point is named C

    – Herbert
    Jan 27 at 7:01








  • 1





    @Herbert yes, I loaded pstInterCC normally....

    – chishimutoji
    Jan 31 at 11:11



















  • @jfbu, the OP refers to the black bullet indicating the intersection.

    – Sigur
    Jan 26 at 15:42











  • The Section 3.6 from pst-eucl documentation shows the same problem. Looks like a bug?

    – Sigur
    Jan 26 at 15:47











  • One way it to pass none to each point: pstTriangle[PointSymbolC=none,PointSymbolA=none,PointSymbolB=none](0,4){C}(0,0){A}(3,0){B}

    – Sigur
    Jan 26 at 15:50






  • 1





    Only the first point in the list of the three for the triangle has to be set additionally to none: PointSymbolA=none. And it makes no difference if your first point is named C

    – Herbert
    Jan 27 at 7:01








  • 1





    @Herbert yes, I loaded pstInterCC normally....

    – chishimutoji
    Jan 31 at 11:11

















@jfbu, the OP refers to the black bullet indicating the intersection.

– Sigur
Jan 26 at 15:42





@jfbu, the OP refers to the black bullet indicating the intersection.

– Sigur
Jan 26 at 15:42













The Section 3.6 from pst-eucl documentation shows the same problem. Looks like a bug?

– Sigur
Jan 26 at 15:47





The Section 3.6 from pst-eucl documentation shows the same problem. Looks like a bug?

– Sigur
Jan 26 at 15:47













One way it to pass none to each point: pstTriangle[PointSymbolC=none,PointSymbolA=none,PointSymbolB=none](0,4){C}(0,0){A}(3,0){B}

– Sigur
Jan 26 at 15:50





One way it to pass none to each point: pstTriangle[PointSymbolC=none,PointSymbolA=none,PointSymbolB=none](0,4){C}(0,0){A}(3,0){B}

– Sigur
Jan 26 at 15:50




1




1





Only the first point in the list of the three for the triangle has to be set additionally to none: PointSymbolA=none. And it makes no difference if your first point is named C

– Herbert
Jan 27 at 7:01







Only the first point in the list of the three for the triangle has to be set additionally to none: PointSymbolA=none. And it makes no difference if your first point is named C

– Herbert
Jan 27 at 7:01






1




1





@Herbert yes, I loaded pstInterCC normally....

– chishimutoji
Jan 31 at 11:11





@Herbert yes, I loaded pstInterCC normally....

– chishimutoji
Jan 31 at 11:11










2 Answers
2






active

oldest

votes


















6














Edit (based on @chishimotoji's comment)



Only PointSymbolA=none is enough to delete the black bullet.



But, that is strange to me since the bullet is at point C in coordinates (0,8) (note the change of units).





Pass the options PointSymbolA=none (and for other 2 points) to the pstTriangle command.



enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle[%
PointSymbolC=none,
PointSymbolA=none,
PointSymbolB=none
](0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}





share|improve this answer


























  • PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

    – chishimutoji
    Jan 26 at 15:56













  • @chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

    – Sigur
    Jan 26 at 16:01











  • Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

    – chishimutoji
    Jan 26 at 16:08













  • @chishimotoji, I edited.

    – Sigur
    Jan 26 at 16:09



















3














With version 1.63, available from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-eucl/ or in the next two days with an update of the TeXLive or MikTeX:



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}

begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}


psset{unit=3cm}

begin{pspicture}(2,2)
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation[PointSymbol=none]{D}{B}{C}[C1]
pstTranslation[PointSymbol=none]{B}{D}{C}[C2]
pstInterLC[PointSymbol=none]{C1}{C2}{C}{B}{M1}{M2}
pstInterLC[PointSymbol=none]{A}{C1}{A}{M1}{M3}{M4}
pstInterLC[PointSymbol=none]{A}{C2}{A}{M2}{M5}{M6}
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
psdot*(C)
end{pspicture}
end{document}


enter image description here



enter image description here






share|improve this answer
























  • Yes, I see. Thanks ...

    – chishimutoji
    Jan 27 at 12:58






  • 1





    Please see edited question. Label A is lost.

    – chishimutoji
    Jan 31 at 7:26











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f471965%2fhow-to-delete-unnecessary-dot%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









6














Edit (based on @chishimotoji's comment)



Only PointSymbolA=none is enough to delete the black bullet.



But, that is strange to me since the bullet is at point C in coordinates (0,8) (note the change of units).





Pass the options PointSymbolA=none (and for other 2 points) to the pstTriangle command.



enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle[%
PointSymbolC=none,
PointSymbolA=none,
PointSymbolB=none
](0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}





share|improve this answer


























  • PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

    – chishimutoji
    Jan 26 at 15:56













  • @chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

    – Sigur
    Jan 26 at 16:01











  • Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

    – chishimutoji
    Jan 26 at 16:08













  • @chishimotoji, I edited.

    – Sigur
    Jan 26 at 16:09
















6














Edit (based on @chishimotoji's comment)



Only PointSymbolA=none is enough to delete the black bullet.



But, that is strange to me since the bullet is at point C in coordinates (0,8) (note the change of units).





Pass the options PointSymbolA=none (and for other 2 points) to the pstTriangle command.



enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle[%
PointSymbolC=none,
PointSymbolA=none,
PointSymbolB=none
](0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}





share|improve this answer


























  • PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

    – chishimutoji
    Jan 26 at 15:56













  • @chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

    – Sigur
    Jan 26 at 16:01











  • Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

    – chishimutoji
    Jan 26 at 16:08













  • @chishimotoji, I edited.

    – Sigur
    Jan 26 at 16:09














6












6








6







Edit (based on @chishimotoji's comment)



Only PointSymbolA=none is enough to delete the black bullet.



But, that is strange to me since the bullet is at point C in coordinates (0,8) (note the change of units).





Pass the options PointSymbolA=none (and for other 2 points) to the pstTriangle command.



enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle[%
PointSymbolC=none,
PointSymbolA=none,
PointSymbolB=none
](0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}





share|improve this answer















Edit (based on @chishimotoji's comment)



Only PointSymbolA=none is enough to delete the black bullet.



But, that is strange to me since the bullet is at point C in coordinates (0,8) (note the change of units).





Pass the options PointSymbolA=none (and for other 2 points) to the pstTriangle command.



enter image description here



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}
begin{pspicture}[showgrid](-5,-5)(10,10)
psset{unit=2cm,PointSymbol=none,PointName=none}
pstTriangle[%
PointSymbolC=none,
PointSymbolA=none,
PointSymbolB=none
](0,4){C}(0,0){A}(3,0){B}
%%% OR pstTriangle[PointSymbol=none](0,4){C}(0,0){A}(3,0){B}
pstMiddleAB{A}{B}{I1} pstArcOAB{I1}{A}{B}
pstMiddleAB{B}{C}{I2} pstArcOAB{I2}{B}{C}
pstMiddleAB{C}{A}{I3} pstArcOAB{I3}{C}{A}
end{pspicture}
end{document}






share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 26 at 16:09

























answered Jan 26 at 15:51









SigurSigur

25.8k457140




25.8k457140













  • PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

    – chishimutoji
    Jan 26 at 15:56













  • @chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

    – Sigur
    Jan 26 at 16:01











  • Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

    – chishimutoji
    Jan 26 at 16:08













  • @chishimotoji, I edited.

    – Sigur
    Jan 26 at 16:09



















  • PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

    – chishimutoji
    Jan 26 at 15:56













  • @chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

    – Sigur
    Jan 26 at 16:01











  • Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

    – chishimutoji
    Jan 26 at 16:08













  • @chishimotoji, I edited.

    – Sigur
    Jan 26 at 16:09

















PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

– chishimutoji
Jan 26 at 15:56







PointSymbolA=none, position " A " PointSymbolC=none, PointSymbolB=none are unnecessary... :-)

– chishimutoji
Jan 26 at 15:56















@chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

– Sigur
Jan 26 at 16:01





@chishimotoji, sorry. Could write it better? I wrote 3 lines of codes. Are you saying that only one is needed?

– Sigur
Jan 26 at 16:01













Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

– chishimutoji
Jan 26 at 16:08







Oh no, I think there is a problem with the first position of pstTriangle[Options](){A}...

– chishimutoji
Jan 26 at 16:08















@chishimotoji, I edited.

– Sigur
Jan 26 at 16:09





@chishimotoji, I edited.

– Sigur
Jan 26 at 16:09











3














With version 1.63, available from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-eucl/ or in the next two days with an update of the TeXLive or MikTeX:



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}

begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}


psset{unit=3cm}

begin{pspicture}(2,2)
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation[PointSymbol=none]{D}{B}{C}[C1]
pstTranslation[PointSymbol=none]{B}{D}{C}[C2]
pstInterLC[PointSymbol=none]{C1}{C2}{C}{B}{M1}{M2}
pstInterLC[PointSymbol=none]{A}{C1}{A}{M1}{M3}{M4}
pstInterLC[PointSymbol=none]{A}{C2}{A}{M2}{M5}{M6}
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
psdot*(C)
end{pspicture}
end{document}


enter image description here



enter image description here






share|improve this answer
























  • Yes, I see. Thanks ...

    – chishimutoji
    Jan 27 at 12:58






  • 1





    Please see edited question. Label A is lost.

    – chishimutoji
    Jan 31 at 7:26
















3














With version 1.63, available from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-eucl/ or in the next two days with an update of the TeXLive or MikTeX:



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}

begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}


psset{unit=3cm}

begin{pspicture}(2,2)
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation[PointSymbol=none]{D}{B}{C}[C1]
pstTranslation[PointSymbol=none]{B}{D}{C}[C2]
pstInterLC[PointSymbol=none]{C1}{C2}{C}{B}{M1}{M2}
pstInterLC[PointSymbol=none]{A}{C1}{A}{M1}{M3}{M4}
pstInterLC[PointSymbol=none]{A}{C2}{A}{M2}{M5}{M6}
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
psdot*(C)
end{pspicture}
end{document}


enter image description here



enter image description here






share|improve this answer
























  • Yes, I see. Thanks ...

    – chishimutoji
    Jan 27 at 12:58






  • 1





    Please see edited question. Label A is lost.

    – chishimutoji
    Jan 31 at 7:26














3












3








3







With version 1.63, available from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-eucl/ or in the next two days with an update of the TeXLive or MikTeX:



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}

begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}


psset{unit=3cm}

begin{pspicture}(2,2)
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation[PointSymbol=none]{D}{B}{C}[C1]
pstTranslation[PointSymbol=none]{B}{D}{C}[C2]
pstInterLC[PointSymbol=none]{C1}{C2}{C}{B}{M1}{M2}
pstInterLC[PointSymbol=none]{A}{C1}{A}{M1}{M3}{M4}
pstInterLC[PointSymbol=none]{A}{C2}{A}{M2}{M5}{M6}
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
psdot*(C)
end{pspicture}
end{document}


enter image description here



enter image description here






share|improve this answer













With version 1.63, available from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-eucl/ or in the next two days with an update of the TeXLive or MikTeX:



documentclass[border=15pt,pstricks,12pt]{standalone}
usepackage{pst-eucl}

begin{document}

begin{pspicture}[showgrid](-2,-2)(2,2)
pstGeonode[PointSymbol=none,PosAngle={0,90,180}](1.5,-1){A}(0,1){B}(-1,-.5){C}
pspolygon[linejoin=2](A)(B)(C)
pstTriangleIC[linecolor=red]{A}{B}{C}
pstTriangleOC[linecolor=red]{A}{B}{C}
end{pspicture}


psset{unit=3cm}

begin{pspicture}(2,2)
psset{PointSymbol=none,PointName=none}
pstGeonode(0,0){A}(1,0){B}(1,1){C}(0,1){D}
pswedge[fillstyle=solid,fillcolor=red](C){1}{135}{-45}
pstTranslation[PointSymbol=none]{D}{B}{C}[C1]
pstTranslation[PointSymbol=none]{B}{D}{C}[C2]
pstInterLC[PointSymbol=none]{C1}{C2}{C}{B}{M1}{M2}
pstInterLC[PointSymbol=none]{A}{C1}{A}{M1}{M3}{M4}
pstInterLC[PointSymbol=none]{A}{C2}{A}{M2}{M5}{M6}
psarc(A){1.73205}{0}{90}
psline(M6)(A)(M4)
psdot*(C)
end{pspicture}
end{document}


enter image description here



enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 27 at 11:39









HerbertHerbert

275k24418730




275k24418730













  • Yes, I see. Thanks ...

    – chishimutoji
    Jan 27 at 12:58






  • 1





    Please see edited question. Label A is lost.

    – chishimutoji
    Jan 31 at 7:26



















  • Yes, I see. Thanks ...

    – chishimutoji
    Jan 27 at 12:58






  • 1





    Please see edited question. Label A is lost.

    – chishimutoji
    Jan 31 at 7:26

















Yes, I see. Thanks ...

– chishimutoji
Jan 27 at 12:58





Yes, I see. Thanks ...

– chishimutoji
Jan 27 at 12:58




1




1





Please see edited question. Label A is lost.

– chishimutoji
Jan 31 at 7:26





Please see edited question. Label A is lost.

– chishimutoji
Jan 31 at 7:26


















draft saved

draft discarded




















































Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f471965%2fhow-to-delete-unnecessary-dot%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Human spaceflight

Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

File:DeusFollowingSea.jpg